Files
gpw_next/GPW.Api/GPW.Data/DBModels/Permessi.cs
T
2021-10-18 15:43:53 +02:00

25 lines
610 B
C#

using System;
using System.Collections.Generic;
#nullable disable
namespace GPW.Data.DBModels
{
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; }
}
}