Files
gpw_next/GPW.Data/DBModels/AnagGruppi.cs
T
Samuele Locatelli 767efc219b Fix nomi modelli
2022-01-26 12:49:37 +01:00

23 lines
511 B
C#

using System;
using System.Collections.Generic;
#nullable disable
namespace GPW.Data.DBModels
{
public partial class AnagGruppi
{
public AnagGruppi()
{
DipendentiNav = new HashSet<Dipendenti>();
}
public string Gruppo { get; set; }
public string DescrGruppo { get; set; }
public string CodExt { get; set; }
public bool? ExportEnab { get; set; }
public virtual ICollection<Dipendenti> DipendentiNav { get; set; }
}
}