using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace AppData.DTO { /// /// Statistiche resa materiali /// public class MaterialYeldStatsDTO { public int MatId { get; set; } = 0; public int MatCode { get; set; } = 0; public string MatDescript { get; set; } = ""; public int TotSheets { get; set; } = 0; public int TotParts { get; set; } = 0; public double YeldMin { get; set; } = 0; public double YeldAvg { get; set; } = 0; public double YeldMax { get; set; } = 0; } }