20 lines
613 B
C#
20 lines
613 B
C#
namespace Gsm
|
|
{
|
|
public struct GsmDbStruct
|
|
{
|
|
public static class Tables
|
|
{
|
|
public static string Directories { get { return "Directories"; } }
|
|
public static string GameEntry { get { return "GameEntry"; } }
|
|
public static string RegistryList { get { return "RegistryList"; } }
|
|
}
|
|
|
|
public static class Columns
|
|
{
|
|
public static string ID { get { return "id"; } }
|
|
public static string GameID { get { return "GameID"; } }
|
|
public static string GameName { get { return "GameName"; } }
|
|
}
|
|
}
|
|
}
|