blob: 70727dd078bd443c2e52a47e2ca3edf008be5d0c (
plain)
1
2
3
4
5
6
7
8
9using System;
using System.Collections.Generic;
using System.Text;
namespace Tango.Synchronization.Conversion
{
/// <summary>
/// Contains the entire database schema
/// </summary>
public class DatabaseSchema
{
public List<TableSchema> Tables = new List<TableSchema>();
public List<ViewSchema> Views = new List<ViewSchema>();
}
}
|