40 lines
1.5 KiB
C#
40 lines
1.5 KiB
C#
//------------------------------------------------------------------------------
|
|
// <auto-generated>
|
|
// Codice generato da un modello.
|
|
//
|
|
// Le modifiche manuali a questo file potrebbero causare un comportamento imprevisto dell'applicazione.
|
|
// Se il codice viene rigenerato, le modifiche manuali al file verranno sovrascritte.
|
|
// </auto-generated>
|
|
//------------------------------------------------------------------------------
|
|
|
|
namespace MedAP_data
|
|
{
|
|
using System;
|
|
using System.Collections.Generic;
|
|
|
|
public partial class UTENTE
|
|
{
|
|
[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA2214:DoNotCallOverridableMethodsInConstructors")]
|
|
public UTENTE()
|
|
{
|
|
this.DIRITTI = new HashSet<DIRITTI>();
|
|
}
|
|
|
|
public string DOMINIO { get; set; }
|
|
public string USER_NAME { get; set; }
|
|
public string COGNOME { get; set; }
|
|
public string NOME { get; set; }
|
|
public string COD_SOCIETA { get; set; }
|
|
public string MATRICOLA { get; set; }
|
|
public string COD_CDC { get; set; }
|
|
public string EMAIL { get; set; }
|
|
public string SIGLA { get; set; }
|
|
public string COD_LINGUA { get; set; }
|
|
public string ATTIVO { get; set; }
|
|
|
|
public virtual CDC CDC { get; set; }
|
|
[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA2227:CollectionPropertiesShouldBeReadOnly")]
|
|
public virtual ICollection<DIRITTI> DIRITTI { get; set; }
|
|
}
|
|
}
|