23 lines
511 B
C#
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; }
|
|
}
|
|
}
|