Renamed FireLance library to GSMParser

This commit is contained in:
2020-06-27 18:49:18 +01:00
parent aaff08bae4
commit d3b8cd1b6b
27 changed files with 813 additions and 5 deletions
+13
View File
@@ -0,0 +1,13 @@
public class Directories
{
public int id { get; set; }
public int GameID { get; set; }
public string SpecialPath { get; set; }
public string Path { get; set; }
public string RegHive { get; set; }
public string RegPath { get; set; }
public string RegValue { get; set; }
public string DefinedFiles { get; set; }
public string ExcludedFiles { get; set; }
public bool Recurse { get; set; }
}
+10
View File
@@ -0,0 +1,10 @@
using System.Data.Common;
public class GameEntry
{
public int id { get; set; }
public string GameName { get; set; }
public string BackupWarning { get; set; }
public string RestoreWarning { get; set; }
public string LastModified { get; set; }
}