using SQLite.Net.Attributes; using System; namespace WebSocketService { public sealed class CardDataPostDto { public string CardUId { get; set; } } public sealed class UserIdentity { [PrimaryKey, AutoIncrement] public int Id { get; set; } public string CardUId { get; set; } public string FirstName { get; set; } public string LastName { get; set; } public float HoursPerWeek { get; set; } } public sealed class TimeLog { [PrimaryKey, AutoIncrement] public int Id { get; set; } public int UserId_FK { get; set; } public DateTimeOffset SwipeEventDateTime { get; set; } } }