16 lines
389 B
C#
16 lines
389 B
C#
namespace SummerBestWebForm2;
|
|
|
|
public class MdlSessionInfo
|
|
{
|
|
public const string KEY_IPADDRESS = "IPAddress";
|
|
public string IPAddress { get; set; } = null!;
|
|
public bool isInit { get; set; } = false;
|
|
public DateTimeOffset DateCreated { get; set; } = DateTimeOffset.MinValue;
|
|
|
|
public MdlSessionInfo()
|
|
{
|
|
// Have to have a blank ctor here for ProtectedSessionStorage
|
|
}
|
|
|
|
}
|