add LastUsed property

#56
This commit is contained in:
chris.watts90@outlook.com 2017-03-03 21:36:22 +00:00
parent 0f7c4e62ad
commit d55a1ed817

View File

@ -1,3 +1,4 @@
using System;
using SQLite.Net.Attributes; using SQLite.Net.Attributes;
namespace SQLiteRepository namespace SQLiteRepository
@ -8,5 +9,6 @@ namespace SQLiteRepository
public int Id { get; set; } public int Id { get; set; }
public int UserId_FK { get; set; } public int UserId_FK { get; set; }
public string CardUId { get; set; } public string CardUId { get; set; }
public DateTimeOffset LastUsed { get; set; }
} }
} }