Files
Samuele Locatelli b072312a71 ADM
- ok gestione gruppi
- update spostamento fasi
2024-10-02 09:34:46 +02:00

36 lines
1018 B
C#

using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
namespace GPW.CORE.Data.DbModels
{
// <Auto-Generated>
// This is here so CodeMaid doesn't reorganize this document
// </Auto-Generated>
[Table("AnagGruppi")]
public partial class AnagGruppiModel
{
public AnagGruppiModel()
{
Dipendenti2GruppiNav = new HashSet<Dipendenti2GruppiModel>();
}
[Key]
public string Gruppo { get; set; } = null!;
public string? DescrGruppo { get; set; }
public string? CodExt { get; set; }
/// <summary>
/// determina se sia abilitato x export dati
/// </summary>
public bool? ExportEnab { get; set; }
[NotMapped]
public int NumDip
{
get => Dipendenti2GruppiNav.Count;
}
public virtual ICollection<Dipendenti2GruppiModel> Dipendenti2GruppiNav { get; set; }
}
}