Files
2023-08-02 11:11:55 +02:00

26 lines
846 B
C#

using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
namespace SHERPA.Data.DbModels
{
// <Auto-Generated>
// This is here so CodeMaid doesn't reorganize this document
// </Auto-Generated>
[Table("DIRITTI")]
public partial class UserDirittiModel
{
[Column("USER_NAME"), MaxLength(50)]
public string UserName { get; set; } = "";
[Column("COD_CDC"), MaxLength(50)]
public string CdC { get; set; } = "";
[Column("COD_MODULO"), MaxLength(31)]
public string Modulo { get; set; } = "";
[Column("COD_FUNZIONE"), MaxLength(31)]
public string Funzione { get; set; } = "";
[Column("VALUE"), MaxLength(255)]
public string? Valore { get; set; } = "";
}
}