From d55a1ed8175467c5622791c1cbaf09825469c847 Mon Sep 17 00:00:00 2001 From: "chris.watts90@outlook.com" Date: Fri, 3 Mar 2017 21:36:22 +0000 Subject: [PATCH] add LastUsed property #56 --- .../WindowsDataCenter/SQLiteRepository/CardUniqueId.cs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/DataCenter_Windows/WindowsDataCenter/SQLiteRepository/CardUniqueId.cs b/DataCenter_Windows/WindowsDataCenter/SQLiteRepository/CardUniqueId.cs index 00dd7fd..67c3694 100644 --- a/DataCenter_Windows/WindowsDataCenter/SQLiteRepository/CardUniqueId.cs +++ b/DataCenter_Windows/WindowsDataCenter/SQLiteRepository/CardUniqueId.cs @@ -1,3 +1,4 @@ +using System; using SQLite.Net.Attributes; namespace SQLiteRepository @@ -8,5 +9,6 @@ namespace SQLiteRepository public int Id { get; set; } public int UserId_FK { get; set; } public string CardUId { get; set; } + public DateTimeOffset LastUsed { get; set; } } } \ No newline at end of file