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; } } }