using System; using System.Collections.Generic; using System.Text; namespace Tango.Synchronization.Conversion { /// /// Contains the entire database schema /// public class DatabaseSchema { public List Tables = new List(); public List Views = new List(); } }