using System; namespace IOB_UT_NEXT.Objects { /// /// Informazioni generiche su batch produzione rilevati /// public class ProdBatchData { public DateTime dtStart { get; set; } = DateTime.Now; public DateTime? dtEnd { get; set; } = null; public string codArt { get; set; } = ""; public int numPz { get; set; } = 0; } }