Files
mapo-core/MP.Data/DTO/OperatoreDTO.cs
T
zaccaria.majid 665f259370 codemaid
2022-12-28 11:32:54 +01:00

13 lines
326 B
C#

using System;
namespace MP.Data.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; }
}
}