using System; using System.Collections.Generic; using System.Xml.Serialization; namespace ServerExplorer.Code.DataTransfer { [Serializable] public class Table { [XmlAttribute] public string Schema { get; set; } [XmlAttribute] public string Name { get; set; } [XmlAttribute] public string Type { get; set; } private readonly List _columns = new List(); [XmlArray] public List Columns { get { return _columns; } } } }