using System.ComponentModel.DataAnnotations; using System.ComponentModel.DataAnnotations.Schema; // // This is here so CodeMaid doesn't reorganize this document // namespace MP.MONO.Data.DbModels { /// /// Tabella Codifica Stati /// public class ParetoStatusModel { #region Public Properties /// /// UID /// [Key] public string CodStatus { get; set; } = ""; /// /// Durata totale stato /// public float TotDuration { get; set; } = 0; #endregion Public Properties } }