Files
2025-03-14 17:30:34 +01:00

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; }
}
}