Refactorings

This commit is contained in:
2017-01-27 11:20:39 +01:00
parent 7983598bbe
commit ad041035f9
17 changed files with 101 additions and 305 deletions

View File

@@ -6,13 +6,14 @@ using System.Xml.Serialization;
namespace ServerExplorer.Code.DataTransfer
{
[Serializable]
class Table
public class Table
{
[XmlAttribute]
public string Schema { get; set; }
[XmlAttribute]
public string Name { get; set; }
[XmlAttribute]
public string Type { get; set; }
private readonly List<Column> _columns = new List<Column>();