namespace LaaProduction.Services.Models { using System; using System.Collections.Generic; public class OrderFiles { public Int32 OrderId { get; set; } public Int32 FileId { get; set; } public String FileContent { get; set; } public IEnumerable Files { get; set; } } }