Refactored GsmDB

This commit is contained in:
2020-07-01 22:02:38 +01:00
parent 83b9c8b27c
commit 9774b85cae
7 changed files with 93 additions and 75 deletions
+28
View File
@@ -0,0 +1,28 @@
namespace Gsm
{
public struct GsmStruct
{
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 DirectoryColumns
{
public static string GameID { get { return "GameID"; } }
}
public static class GameEntries
{
public static string GameID { get { return "id"; } }
public static string GameName { get { return "GameName"; } }
}
public static class RegistryColumns
{
public static string GameID { get { return "GameID"; } }
}
}
}