SummerBestWebForm2/ClassObj/MdlSessionInfo.cs

16 lines
389 B
C#
Raw Permalink Normal View History

2025-05-15 06:12:34 -04:00
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
}
}