Miscellaneous changes. Keep original end of line characters.
This commit is contained in:
25
ServerExplorer/Code/DataTransfer/Table.cs
Normal file
25
ServerExplorer/Code/DataTransfer/Table.cs
Normal file
@@ -0,0 +1,25 @@
|
||||
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Xml.Serialization;
|
||||
|
||||
namespace ServerExplorer.Code.DataTransfer
|
||||
{
|
||||
[Serializable]
|
||||
class Table
|
||||
{
|
||||
[XmlAttribute]
|
||||
public string Schema { get; set; }
|
||||
[XmlAttribute]
|
||||
public string Name { get; set; }
|
||||
|
||||
|
||||
private readonly List<Column> _columns = new List<Column>();
|
||||
|
||||
[XmlArray]
|
||||
public List<Column> Columns
|
||||
{
|
||||
get { return _columns; }
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user