moved LogDirectionDB to its own file and renamed to LogDirectionDb
17 lines
485 B
C#
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; }
|
|
}
|
|
} |