using System; using System.Collections.Generic; using System.Xml.Serialization; namespace ServerExplorer.Code { [Serializable] public class DatabaseDesc { private string _nombre = string.Empty; [XmlAttribute("Nombre")] public string Nombre { get { return _nombre; } set { _nombre = value; } } private readonly List _tablas = new List(); [XmlArray("Tablas")] public List Tablas { get { return _tablas; } } } }