Files
2021-10-08 13:13:11 +02:00

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
}
}