Files
SHERPA/SHERPA.Data/DbModels/Permessi2FunzioneModel.cs
2023-01-23 19:30:31 +01:00

20 lines
580 B
C#

using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations.Schema;
namespace SHERPA.Data.DbModels
{
// <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!;
}
}