Files
limanapp/LiMan.DB/DatabaseModels/Permessi2Funzione.cs
T
2021-10-08 13:36:13 +02:00

19 lines
446 B
C#

using System;
using System.Collections.Generic;
#nullable disable
namespace LiMan.DB.DatabaseModels
{
public partial class Permessi2Funzione
{
#region Public Properties
public string CodFunzione { get; set; }
public string CodPermesso { get; set; }
public virtual Permessi CodPermessoNavigation { get; set; }
public string Readwrite { get; set; }
#endregion Public Properties
}
}