using SQLite.Net.Attributes; namespace SQLiteRepository { public sealed class UserIdentity { [PrimaryKey, AutoIncrement] public int Id { get; set; } public string FirstName { get; set; } public string LastName { get; set; } public float HoursPerWeek { get; set; } public bool IsContractor { get; set; } } }