using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace AppData.DTO
{
///
/// Statistiche in termini di Yeld e quantità produzioni relative ad un singolo batch
///
public class BatchYeldStatDTO
{
///
/// Statistiche YELD aggregate per Material
///
public List ListByMaterial { get; set; } = new List();
///
/// Statistiche YELD aggregate per Sheet
///
public List ListBySheet { get; set; } = new List();
}
}