using System; namespace MiniSqlQuery.Core { public interface INamedObject { string Name { get; } } }