9 lines
274 B
C#
9 lines
274 B
C#
|
using SQLite;
|
||
|
|
||
|
namespace Backend.Model.Relations;
|
||
|
|
||
|
internal class User2Installation : Relation<Int64, Int64>
|
||
|
{
|
||
|
[Indexed] public Int64 UserId { get => Left ; set => Left = value;}
|
||
|
[Indexed] public Int64 InstallationId { get => Right; set => Right = value;}
|
||
|
}
|