Files
limanapp/LiMan.DB/DatabaseModels/Permessi.cs
T
2021-10-08 13:36:13 +02:00

31 lines
764 B
C#

using System;
using System.Collections.Generic;
#nullable disable
namespace LiMan.DB.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
}
}