Miscellaneous changes. Keep original end of line characters.

This commit is contained in:
2015-06-07 01:52:30 +02:00
parent ae8ce4a213
commit 7983598bbe
43 changed files with 4038 additions and 3839 deletions

View File

@@ -1,22 +1,22 @@
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; } }
}
}
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; } }
}
}