namespace EgwCoreLib.Lux.Data.DbModel.Items { // // This is here so CodeMaid doesn't reorganize this document // [Table("item_group")] public class ItemGroupModel { /// /// Cod gruppo articolo (per selezione omogenea alternative) /// [Key] public string CodGroup { get; set; } = ""; /// /// Descrizione Cod gruppo articolo /// public string Description { get; set; } = ""; } }