Files
Mapo-IOB-WIN/IOB-UT-NEXT/Objects/ProdBatchData.cs
T
2026-05-21 20:05:29 +02:00

17 lines
401 B
C#

using System;
namespace IOB_UT_NEXT.Objects
{
/// <summary>
/// Informazioni generiche su batch produzione rilevati
/// </summary>
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;
}
}