31 lines
765 B
C#
31 lines
765 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
|
|
#nullable disable
|
|
|
|
namespace LiMan.GLS.DatabaseModels
|
|
{
|
|
public partial class Permessi
|
|
{
|
|
#region Public Constructors
|
|
|
|
public Permessi()
|
|
{
|
|
Permessi2Funziones = new HashSet<Permessi2Funzione>();
|
|
}
|
|
|
|
#endregion Public Constructors
|
|
|
|
#region Public Properties
|
|
|
|
public string CodPermesso { get; set; }
|
|
public string Descrizione { get; set; }
|
|
public int? Gruppo { get; set; }
|
|
public string Nome { get; set; }
|
|
public int? Numero { get; set; }
|
|
public virtual ICollection<Permessi2Funzione> Permessi2Funziones { get; set; }
|
|
public string Url { get; set; }
|
|
|
|
#endregion Public Properties
|
|
}
|
|
} |