namespace Connected.Data.Schema
{
internal interface ITable : ISchema
List<ITableColumn> Columns { get; }
List<ITableIndex> Indexes { get; }
}