Files
lux/EgwCoreLib.Lux.Data/DbModel/Items/ItemGroupModel.cs
T
2025-09-19 18:54:17 +02:00

30 lines
773 B
C#

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
{ // <Auto-Generated>
// This is here so CodeMaid doesn't reorganize this document
// </Auto-Generated>
[Table("item_group")]
public class ItemGroupModel
{
/// <summary>
/// Cod gruppo articolo (per selezione omogenea alternative)
/// </summary>
[Key]
public string CodGroup { get; set; } = "";
/// <summary>
/// Descrizione Cod gruppo articolo
/// </summary>
public string Description { get; set; } = "";
}
}