Files
limanapp/LiMan.DL/DatabaseModels/Permessi.cs
T
2021-10-07 18:55:10 +02:00

25 lines
616 B
C#

using System;
using System.Collections.Generic;
#nullable disable
namespace LiMan.DL.DatabaseModels
{
public partial class Permessi
{
public Permessi()
{
Permessi2Funziones = new HashSet<Permessi2Funzione>();
}
public string CodPermesso { get; set; }
public string Url { get; set; }
public int? Gruppo { get; set; }
public int? Numero { get; set; }
public string Nome { get; set; }
public string Descrizione { get; set; }
public virtual ICollection<Permessi2Funzione> Permessi2Funziones { get; set; }
}
}