Loose coupling of data models using interfaces

This commit is contained in:
2020-06-28 12:07:50 +01:00
parent 7c8ef0cc10
commit af984ecfb1
10 changed files with 75 additions and 13 deletions
+10
View File
@@ -0,0 +1,10 @@
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; }
}