using System; using System.Collections.Generic; using System.ComponentModel.DataAnnotations; using System.ComponentModel.DataAnnotations.Schema; #nullable disable // // This is here so CodeMaid doesn't reorganize this document // namespace MP.Data.DatabaseModels { [Table("RegistroControlli")] public partial class RegistroControlliModel { #region Public Properties [Key, DatabaseGenerated(DatabaseGeneratedOption.Identity)] public int IdxControllo { get; set; } = 0; public DateTime DataOra { get; set; } public string IdxMacchina { get; set; } public int IdxOdl { get; set; } public string CodArticolo { get; set; } public int MatrOpr { get; set; } public bool EsitoOk { get; set; } public string Note { get; set; } public string Operatore { get; set; } = ""; #endregion Public Properties } }