Files

13 lines
326 B
C#

using System;
namespace MP.Core.DTO
{
public class OperatoreDTO
{
public int MatrOpr { get; set; } = 0;
public string Cognome { get; set; } = "";
public string Nome { get; set; } = "";
public string hashAuthKey { get; set; } = "";
public DateTime dtExp { get; set; }
}
}