Files
FireLance/FireLance/Interfaces/IGameEntry.cs

16 lines
346 B
C#

using System;
using System.Collections.Generic;
using System.Text;
namespace FireLance.Interfaces
{
public interface IGameEntry
{
int id { get; set; }
string GameName { get; set; }
string BackupWarning { get; set; }
string RestoreWarning { get; set; }
string LastModified { get; set; }
}
}