You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Connected.Framework/Connected.Data/Schema/ISchema.cs

13 lines
230 B

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