using System; using System.Collections.Generic; #nullable disable namespace GPW.Data.DBModels { public partial class Dipendenti { #region Public Constructors public Dipendenti() { //PeriodiLavs = new HashSet(); //RegAttivita = new HashSet(); //RegAttivitaEgals = new HashSet(); //RilievoTemps = new HashSet(); TimbratureNav = new HashSet(); } #endregion Public Constructors #region Public Properties public bool? Attivo { get; set; } public string AuthKey { get; set; } public string Cf { get; set; } public string CodDipendenteExt { get; set; } public string CodHw { get; set; } public string CodOrario { get; set; } public virtual AnagOrari CodOrarioNavigation { get; set; } public string Cognome { get; set; } public DateTime? DataAssunzione { get; set; } public DateTime? DataCessazione { get; set; } public DateTime? DataNascita { get; set; } public string Dominio { get; set; } public string Email { get; set; } public string Gruppo { get; set; } public virtual AnagGruppi GruppoNavigation { get; set; } public int IdxDipendente { get; set; } public string LuogoNascita { get; set; } public bool? MailDay { get; set; } public bool? MailLastOp { get; set; } public bool? MailMonth { get; set; } public bool? MailWeek { get; set; } public string Matricola { get; set; } public string NazNascita { get; set; } public string Nome { get; set; } public int? NumAuth { get; set; } public string ProvNascita { get; set; } //public virtual ICollection PeriodiLavs { get; set; } //public virtual ICollection RegAttivita { get; set; } //public virtual ICollection RegAttivitaEgals { get; set; } //public virtual ICollection RilievoTemps { get; set; } public virtual ICollection TimbratureNav { get; set; } public string Utente { get; set; } public string WolMac { get; set; } #endregion Public Properties } }