using System;
using System.Collections.Generic;
public class Table
{
public static List<string> tables = new List<string>();
public static List<string> gettables()
return tables;
}
public static void addtable(string table){
tables.Add(table);