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 Positions { get; set; } public IEnumerable Results { get; set; } } }