23 lines
677 B
C#
23 lines
677 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.Data.DatabaseModels
|
|
{
|
|
[Table("AnagraficaOperatori")]
|
|
public class AnagOperatoriModel
|
|
{
|
|
[Key, DatabaseGenerated(DatabaseGeneratedOption.Identity)]
|
|
public int MatrOpr { get; set; }
|
|
public string Cognome { get; set; } = "";
|
|
public string Nome { get; set; } = "";
|
|
public bool isAdmin { get; set; } = false;
|
|
public int authKey { get; set; }
|
|
public int CodOprExt { get; set; }
|
|
}
|
|
}
|