- Renamed CSProj for both Gsm and Firelance. - Made namespace names consistent.
29 lines
680 B
C#
29 lines
680 B
C#
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 = "*";
|
|
}
|
|
}
|
|
}
|