using SQLite; namespace InnovEnergy.App.Backend.Model.Relations; internal class User2Installation : Relation { [Indexed] public Int64 UserId { get => Left ; set => Left = value;} [Indexed] public Int64 InstallationId { get => Right; set => Right = value;} }