laatzen/LaaProductionWeb/LaaProduction.Services/Models/OrderClientModel.cs
2024-07-17 13:13:41 +02:00

24 lines
565 B
C#

namespace LaaProduction.Services.Models
{
using LaaProduction.Services.Models.Reports;
using System;
using System.Collections.Generic;
public class OrderClientModel
{
public Int32? OrderId { get; set; }
public Int32? ClientId { get; set; }
public String ClientName { get; set; }
public Int32 Files { get; set; }
public Int16[] SelectedPositions { get; set; }
public IDictionary<Int16, Boolean> Positions { get; set; }
public IEnumerable<TestStatus> Results { get; set; }
}
}