using System.ComponentModel.DataAnnotations;
//
// This is here so CodeMaid doesn't reorganize this document
//
namespace MP.Core.DTO
{
public class InsManDayDto
{
public int IdxInsMan { get; set; }
[MaxLength(50)]
public string IdxMacchina { get; set; } = "NA";
public DateTime DataRif { get; set; } = DateTime.Today;
public int PzBuoniTot { get; set; } = 0;
///
/// Minuti prodotti (da TC e pz prod
///
public decimal MinProdTot { get; set; } = 0;
///
/// Rapporto record importati/totali, 0 = niente, 1 = tutto importato
///
public double RatioImport { get; set; } = 0;
}
}