Mover código a sus namespaces correspondientes
This commit is contained in:
24
ServerExplorer/Code/DatabaseDesc.cs
Normal file
24
ServerExplorer/Code/DatabaseDesc.cs
Normal file
@@ -0,0 +1,24 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
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 List<TablaDesc> tablas = new List<TablaDesc>();
|
||||
[XmlArray("Tablas")]
|
||||
public List<TablaDesc> Tablas { get { return tablas; } }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user