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 valore stato contatori /// [Table("Counter")] public class CounterModel { /// /// Codice Univoco /// [Key, DatabaseGenerated(DatabaseGeneratedOption.None), MaxLength(250)] public string CCode { get; set; } = ""; /// /// Descrizione /// [MaxLength(500)] public string Description { get; set; } = ""; } }