using SQLite.Net.Attributes; namespace SQLiteRepository { internal class GroupDb { [PrimaryKey, AutoIncrement] public int GroupId { get; set; } public string GroupName { get; set; } public string AssignedUserCount { get; set; } } }