Files
mapo-core/MP.AppAuth/Models/Permessi2FunzioneModel.cs
Samuele Locatelli d621f7e6fc AuthUtente x LAND:
- aggiunta DbModels
- aggiunta controillers
- aggiunta servizio
2024-09-03 17:18:59 +02:00

23 lines
645 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("Permessi2Funzione")]
public partial class Permessi2FunzioneModel
{
public string CodPermesso { get; set; } = null!;
public string CodFunzione { get; set; } = null!;
public string? Readwrite { get; set; }
public virtual PermessiModel PermessiNav { get; set; } = null!;
}
}