FlexitimeTracker/DataCenter_Windows/WindowsDataCenter/SQLiteRepository/TimeLogDb.cs
2017-04-12 22:01:10 +01:00

18 lines
533 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; }
public LogSourceDb Source { get; set; }
}
}