Innovenergy_trunk/csharp/App/Backend/Relations/OrderNumber2Installation.cs

9 lines
306 B
C#

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