10 lines
306 B
C#
10 lines
306 B
C#
using System.Data.Common;
|
|
|
|
public class GameEntryModal : FireLance.Interfaces.IGameEntry
|
|
{
|
|
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; }
|
|
} |