2023-02-16 12:57:06 +00:00
|
|
|
using SQLite;
|
|
|
|
|
2023-03-08 12:20:33 +00:00
|
|
|
namespace InnovEnergy.App.Backend.Model.Relations;
|
2023-02-16 12:57:06 +00:00
|
|
|
|
|
|
|
internal class User2Installation : Relation<Int64, Int64>
|
|
|
|
{
|
|
|
|
[Indexed] public Int64 UserId { get => Left ; set => Left = value;}
|
|
|
|
[Indexed] public Int64 InstallationId { get => Right; set => Right = value;}
|
|
|
|
}
|