using System.ComponentModel.DataAnnotations; #nullable disable // // This is here so CodeMaid doesn't reorganize this document // namespace MP.Data.DbModels { public partial class StatODLModel { #region Public Properties [Key] public int IdxStato { get; set; } public string Descrizione { get; set; } = ""; public string Semaforo { get; set; } public string Css { get; set; } public double TotDurata { get; set; } #endregion Public Properties } }