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

36 lines
885 B
C#

// <Auto-Generated>
// This is here so CodeMaid doesn't reorganize this document
// </Auto-Generated>
namespace EgwCoreLib.Lux.Data.DbModel.Utils
{
[Table("utils_gen_class")]
public class GenClassModel
{
/// <summary>
/// Cod della classe
/// </summary>
[Key]
public string ClassCod { get; set; } = "";
/// <summary>
/// Descrizione
/// </summary>
public string Description { get; set; } = "";
/// <summary>
/// Numero Item compresi
/// </summary>
[NotMapped]
public int NumChild
{
get => GenValNav?.Count ?? 0;
}
/// <summary>
/// Navigazione alle righe dei valori associati
/// </summary>
public virtual ICollection<GenValueModel> GenValNav { get; set; } = new List<GenValueModel>();
}
}