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