namespace Connected.Data.Schema { public interface ISchema : IEquatable { List Columns { get; } string? Schema { get; } string? Name { get; } string? Type { get; } bool Ignore { get; } } }