using System; using System.Collections.Generic; using System.Text; namespace Tango.Synchronization.Conversion { /// /// Describes a single view schema /// public class ViewSchema { /// /// Contains the view name /// public string ViewName; /// /// Contains the view SQL statement /// public string ViewSQL; } }