namespace SummerBestWebForm2.SessionState; public class MdlSession : Dictionary { /// /// Gets or sets the Session Id value. /// public string SessionId { get; set; } = string.Empty; public string IPAddress { get; set; } = string.Empty; public bool IsCheckedOut { get; set; } = false; public DateTimeOffset dtExpires { get; set; } = DateTimeOffset.Now.AddHours(36); }