Files
lux/EgwCoreLib.Lux.Data/DbModel/Items/ItemGroupModel.cs
T
2026-03-25 07:24:21 +01:00

22 lines
559 B
C#

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; } = "";
}
}