Commit inicial

This commit is contained in:
2013-10-14 01:03:45 +02:00
parent 6095221df5
commit af72a4decb
62 changed files with 1805 additions and 368 deletions

View File

@@ -0,0 +1,21 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace ServerExplorer
{
public class DatabaseDesc
{
public string Nombre = "";
public List<TablaDesc> Tablas = new List<TablaDesc>();
public DatabaseDesc() { }
public DatabaseDesc(string nombre)
{
Nombre = nombre;
}
}
}