29 lines
911 B
C#
29 lines
911 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
using System.ComponentModel.DataAnnotations;
|
|
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("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; } = "";
|
|
}
|
|
}
|