Removed magic strings from FirelanceMgr
- Renamed CSProj for both Gsm and Firelance. - Made namespace names consistent.
This commit is contained in:
@@ -0,0 +1,28 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Text;
|
||||
|
||||
namespace Gsm
|
||||
{
|
||||
public static class Collections
|
||||
{
|
||||
public static class Tables
|
||||
{
|
||||
public const string Directories = "Directories";
|
||||
public const string GameEntry = "GameEntry";
|
||||
public const string RegistryList = "RegistryList";
|
||||
}
|
||||
|
||||
public static class Columns
|
||||
{
|
||||
public const string ID = "id";
|
||||
public const string GameID = "GameID";
|
||||
public const string GameName = "GameName";
|
||||
}
|
||||
|
||||
public static class Options
|
||||
{
|
||||
public static string All = "*";
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user