14 lines
335 B
C#
14 lines
335 B
C#
using System;
|
|
using SQLite.Net.Attributes;
|
|
|
|
namespace SQLiteRepository
|
|
{
|
|
public sealed class CardUniqueId
|
|
{
|
|
[PrimaryKey, AutoIncrement]
|
|
public int Id { get; set; }
|
|
public int UserId_FK { get; set; }
|
|
public string CardUId { get; set; }
|
|
public DateTimeOffset LastUsed { get; set; }
|
|
}
|
|
} |