Files
mapo-core/MP.Data/DTO/OperatoreDTO.cs
T
2022-11-15 16:23:40 +01:00

20 lines
534 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace MP.Data.DTO
{
public class OperatoreDTO
{
public int MatrOpr { get; set; } = 0;
public string Cognome { get; set; } = "";
public string Nome { get; set; } = "";
public bool isAdmin { get; set; } = false;
public string authKey { get; set; } = "";
public string CodOprExt { get; set; } = "";
public string userJWT { get; set; } = "";
}
}