using System; using System.ComponentModel.DataAnnotations.Schema; #nullable disable // // This is here so CodeMaid doesn't reorganize this document // namespace MP.Data.DbModels { [Table("RegistroScartiKit")] public partial class RegistroScartiKitModel { #region Public Properties public string IdxMacchina { get; set; } = ""; public DateTime DataOra { get; set; } = DateTime.Now; public string Causale { get; set; } = ""; public string CodArticoloKit { get; set; } = ""; public string CodArticolo { get; set; } = ""; public string Operatore { get; set; } = ""; public int Qta { get; set; } = 0; public int QtaMax { get; set; } = 0; public string Note { get; set; } = ""; public int MatrOpr { get; set; } = 0; public DateTime? DataOraProdRec { get; set; } = null; public string Descrizione { get; set; } = ""; public string cssClass { get; set; } = ""; public string icona { get; set; } = ""; public string DescArticolo { get; set; } = ""; public string Tipo { get; set; } = ""; #endregion Public Properties } }