Files
MedAP/MedAP_data/Permessi.cs
T
2018-01-03 12:04:22 +01:00

34 lines
1.3 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 Permessi
{
[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA2214:DoNotCallOverridableMethodsInConstructors")]
public Permessi()
{
this.Permessi2Funzione = new HashSet<Permessi2Funzione>();
}
public string COD_PERMESSO { get; set; }
public string URL { get; set; }
public Nullable<int> GRUPPO { get; set; }
public Nullable<int> NUMERO { get; set; }
public string NOME { get; set; }
public string DESCRIZIONE { get; set; }
[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA2227:CollectionPropertiesShouldBeReadOnly")]
public virtual ICollection<Permessi2Funzione> Permessi2Funzione { get; set; }
}
}