using System; using System.Collections.Generic; using System.Text; namespace Tango.Synchronization.Conversion { /// /// Contains the schema of a single DB column. /// public class ColumnSchema { public string ColumnName; public string ColumnType; public int Length; public bool IsNullable; public string DefaultValue; public bool IsIdentity; public bool? IsCaseSensitivite = null; } }