Mover código a sus namespaces correspondientes

This commit is contained in:
2013-11-22 00:56:13 +01:00
parent 12e67b0e25
commit ce7148acdc
24 changed files with 41 additions and 38 deletions

View 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; } }
}
}