13 lines
280 B
C#
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; }
|
|
}
|
|
}
|