22 lines
559 B
C#
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; } = "";
|
|
}
|
|
}
|