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 team utente /// [Table("UserTeam")] public class PMUTModel { /// /// Codice Univoco /// [Key, DatabaseGenerated(DatabaseGeneratedOption.None), MaxLength(250)] public string PMUTCode { get; set; } = ""; /// /// Descrizione /// [MaxLength(500)] public string Description { get; set; } = ""; } }