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