27 lines
639 B
C#
27 lines
639 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel.DataAnnotations;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
|
|
#nullable disable
|
|
|
|
namespace MP.AppAuth.Models
|
|
{
|
|
[Table("AnagraficaOperatori")]
|
|
public partial class AnagraficaOperatori
|
|
{
|
|
#region Public Properties
|
|
|
|
public string AuthKey { get; set; }
|
|
public string CodOprExt { get; set; }
|
|
public string Cognome { get; set; }
|
|
public bool? IsAdmin { get; set; }
|
|
|
|
[Key]
|
|
public int MatrOpr { get; set; }
|
|
|
|
public string Nome { get; set; }
|
|
|
|
#endregion Public Properties
|
|
}
|
|
} |