FlexitimeTracker/DataCenter_Windows/WindowsDataCenter/SQLiteRepository/TimeLogDb.cs
chris.watts90@outlook.com 38fab21afd renamed TimeLogDB to TimeLogDb.
moved LogDirectionDB to its own file and renamed to LogDirectionDb
2017-02-09 21:33:52 +00:00

17 lines
485 B
C#

using System;
using SQLite.Net.Attributes;
namespace SQLiteRepository
{
public sealed class TimeLogDb
{
[PrimaryKey, AutoIncrement]
public int Id { get; set; }
public int UserId_FK { get; set; }
public int IdentifierId { get; set; }
public LogDirectionDb Direction { get; set; }
public DateTimeOffset SwipeEventDateTime { get; set; }
public int CalendarWeek { get; set; }
public int Year { get; set; }
}
}