17 lines
401 B
C#
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;
|
|
}
|
|
}
|