using System; using System.Collections.Generic; using System.Text; namespace Tango.Synchronization.Conversion { public class TableSchema { public string TableName; public string TableSchemaName; public List Columns; public List PrimaryKey; public List ForeignKeys; public List Indexes; public bool CopyData { get; set; } } }