Files
gpw_next/GPW.Api/GPW.Data/DBModels/AnagGruppi.cs
T
2021-10-18 15:43:53 +02:00

23 lines
507 B
C#

using System;
using System.Collections.Generic;
#nullable disable
namespace GPW.Data.DBModels
{
public partial class AnagGruppi
{
public AnagGruppi()
{
Dipendentis = 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> Dipendentis { get; set; }
}
}