using System.ComponentModel.DataAnnotations; using System.ComponentModel.DataAnnotations.Schema; // // This is here so CodeMaid doesn't reorganize this document // namespace EgwCoreLib.Lux.Data.DbModel { [Table("GenClass")] public class GenClassModel { /// /// Cod della classe /// [Key] public string ClassCod { get; set; } = ""; /// /// Descrizione /// public string Description { get; set; } = ""; } }