d621f7e6fc
- aggiunta DbModels - aggiunta controillers - aggiunta servizio
31 lines
893 B
C#
31 lines
893 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace MP.AppAuth.Models
|
|
{
|
|
// <Auto-Generated>
|
|
// This is here so CodeMaid doesn't reorganize this document
|
|
// </Auto-Generated>
|
|
[Table("Permessi")]
|
|
public partial class PermessiModel
|
|
{
|
|
public PermessiModel()
|
|
{
|
|
Permessi2FunzioneNav = new HashSet<Permessi2FunzioneModel>();
|
|
}
|
|
|
|
public string CodPermesso { get; set; } = null!;
|
|
public string Url { get; set; } = null!;
|
|
public int? Gruppo { get; set; }
|
|
public int? Numero { get; set; }
|
|
public string? Nome { get; set; }
|
|
public string? Descrizione { get; set; }
|
|
|
|
public virtual ICollection<Permessi2FunzioneModel> Permessi2FunzioneNav { get; set; }
|
|
}
|
|
}
|