12 lines
275 B
C#
12 lines
275 B
C#
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; }
|
|
}
|
|
} |