Update gestione risorse

This commit is contained in:
Samuele Locatelli
2025-10-30 18:32:17 +01:00
parent 00317a3c12
commit dfaf8f33ca
15 changed files with 289 additions and 27 deletions
@@ -108,5 +108,14 @@ namespace EgwCoreLib.Lux.Data.DbModel.Task
/// Many-to-many with Tags
/// </summary>
public virtual ICollection<JobStepTagModel> TagNav { get; set; } = new List<JobStepTagModel>();
/// <summary>
/// Numero Tags compresi
/// </summary>
[NotMapped]
public int NumTags
{
get => TagNav?.Count ?? 0;
}
}
}