using System; using System.Collections.Generic; using System.ComponentModel.DataAnnotations; using System.ComponentModel.DataAnnotations.Schema; using System.Linq; using System.Text; using System.Threading.Tasks; 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; } = ""; } }