using System; using System.Collections.Generic; using System.Xml.Serialization; namespace ServerExplorer.Code.DataTransfer { [Serializable] public class Database { [XmlAttribute] public string Name { get; set; } [XmlAttribute] public DateTime CreateDate { get; set; } private readonly List _tables = new List
(); [XmlArray] public List
Tables { get { return _tables; } } } }