Files
mapo-core/MP.AppAuth/DatabaseModels/AnagraficaOperatori.cs
T
2021-09-17 19:42:03 +02:00

31 lines
1019 B
C#

using System;
using System.Collections.Generic;
#nullable disable
namespace MP.AppAuth
{
public partial class AnagraficaOperatori
{
public AnagraficaOperatori()
{
DiarioDiBordos = new HashSet<DiarioDiBordo>();
EventLists = new HashSet<EventList>();
Gruppi2Operatoris = new HashSet<Gruppi2Operatori>();
StatoMacchines = new HashSet<StatoMacchine>();
}
public int MatrOpr { get; set; }
public string Cognome { get; set; }
public string Nome { get; set; }
public bool? IsAdmin { get; set; }
public string AuthKey { get; set; }
public string CodOprExt { get; set; }
public virtual ICollection<DiarioDiBordo> DiarioDiBordos { get; set; }
public virtual ICollection<EventList> EventLists { get; set; }
public virtual ICollection<Gruppi2Operatori> Gruppi2Operatoris { get; set; }
public virtual ICollection<StatoMacchine> StatoMacchines { get; set; }
}
}