|
using SQLite;
|
|
|
|
namespace InnovEnergy.App.Backend.Relations;
|
|
|
|
public class InstallationAccess : Relation<Int64, Int64>
|
|
{
|
|
[Indexed] public Int64 UserId { get => Left ; init => Left = value;}
|
|
[Indexed] public Int64 InstallationId { get => Right; init => Right = value;}
|
|
} |