using System; using System.Collections.Generic; using System.ComponentModel.DataAnnotations; using System.ComponentModel.DataAnnotations.Schema; namespace GPW.CORE.Data.DbModels { // // This is here so CodeMaid doesn't reorganize this document // [Table("AnagGiust")] public partial class AnagGiustModel { [Key] public string codGiust { get; set; } = null!; public string descrizione { get; set; } = ""; public bool userSelectable { get; set; } = false; public bool showReq { get; set; } = false; } }