Add Joining table object to link users to groups.

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

View File

@ -0,0 +1,12 @@
using SQLite.Net.Attributes;
namespace SQLiteRepository
{
internal class UserGroupJoinDb
{
[PrimaryKey, AutoIncrement]
public int JoinPKId { get; set; }
public int UserId_FK { get; set; }
public int GroupId_FK { get; set; }
}
}