25 lines
715 B
C#
25 lines
715 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace AppData.DTO
|
|
{
|
|
/// <summary>
|
|
/// Statistiche in termini di Yeld e quantità produzioni relative ad un singolo batch
|
|
/// </summary>
|
|
public class BatchYeldStatDTO
|
|
{
|
|
/// <summary>
|
|
/// Statistiche YELD aggregate per Material
|
|
/// </summary>
|
|
public List<MaterialYeldStatsDTO> ListByMaterial { get; set; } = new List<MaterialYeldStatsDTO>();
|
|
|
|
/// <summary>
|
|
/// Statistiche YELD aggregate per Sheet
|
|
/// </summary>
|
|
public List<SheetYeldStatDTO> ListBySheet { get; set; } = new List<SheetYeldStatDTO>();
|
|
}
|
|
}
|