25 lines
570 B
C#
25 lines
570 B
C#
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<TablaDesc> tablas = new List<TablaDesc>();
|
|
[XmlArray("Tablas")]
|
|
public List<TablaDesc> Tablas { get { return tablas; } }
|
|
}
|
|
}
|