FlexitimeTracker/DataCenter_Windows/WindowsDataCenter/SQLiteRepository/GroupDb.cs

13 lines
280 B
C#

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; }
}
}