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