Commit inicial
This commit is contained in:
21
ServerExplorer/DatabaseDesc.cs
Normal file
21
ServerExplorer/DatabaseDesc.cs
Normal 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;
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user