WintersBestWebForm/ClassObj/MdlSessionInfo.cs

16 lines
414 B
C#

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