31 lines
776 B
C#
31 lines
776 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
|
|
#nullable disable
|
|
|
|
namespace MP.AppAuth.Models
|
|
{
|
|
public partial class AnagraficaOperatori
|
|
{
|
|
#region Public Constructors
|
|
|
|
public AnagraficaOperatori()
|
|
{
|
|
Gruppi2Operatoris = new HashSet<Gruppi2Operatori>();
|
|
}
|
|
|
|
#endregion Public Constructors
|
|
|
|
#region Public Properties
|
|
|
|
public string AuthKey { get; set; }
|
|
public string CodOprExt { get; set; }
|
|
public string Cognome { get; set; }
|
|
public virtual ICollection<Gruppi2Operatori> Gruppi2Operatoris { get; set; }
|
|
public bool? IsAdmin { get; set; }
|
|
public int MatrOpr { get; set; }
|
|
public string Nome { get; set; }
|
|
|
|
#endregion Public Properties
|
|
}
|
|
} |