create GroupDb object to hold group information

#59
This commit is contained in:
Chris.Watts90@outlook.com 2017-03-08 16:23:14 +00:00
parent fae6ca3244
commit d2ff905afd

View File

@ -0,0 +1,12 @@
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; }
}
}