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