Files
mapo-core/MP.Data/DTO/InveSessDTO.cs
T
2022-12-27 13:07:33 +01:00

18 lines
428 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace MP.Data.DTO
{
public class InveSessDTO
{
public int MatrOpr { get; set; } = 0;
public int InveSessID { get; set; } = 0;
public string MagID { get; set; } = "";
public string hashAuthKey { get; set; } = "";
public DateTime dtExp { get; set; }
}
}