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("MicroStatoMacchina")] public partial class MicroStatoMacchinaModel { [Key] public string IdxMacchina { get; set; } = "NA"; public int IdxMicroStato { get; set; } = 0; public DateTime InizioStato { get; set; } = DateTime.Now; public string Value { get; set; } = ""; } }