using System; using System.ComponentModel.DataAnnotations; using System.ComponentModel.DataAnnotations.Schema; #nullable disable // // This is here so CodeMaid doesn't reorganize this document // namespace MP.Data.DbModels { [Table("DiarioDichiarazioni")] public partial class RegistroDichiarazioniModel { #region Public Properties [Key, DatabaseGenerated(DatabaseGeneratedOption.Identity)] public int IdxDich { get; set; } public DateTime DtRec { get; set; } = DateTime.Now; public string IdxMacchina { get; set; } = ""; public string TagCode { get; set; } = ""; public int MatrOpr { get; set; } public string ValString { get; set; } = ""; public string CognNome { get; set; } = ""; public string CssClass { get; set; } = ""; #endregion Public Properties } }