11 lines
300 B
C#
11 lines
300 B
C#
|
namespace SummerBestWebForm2.AppState;
|
|||
|
|
|||
|
public class MdlAppState : IAppState
|
|||
|
{
|
|||
|
public bool isInit { get; set; }
|
|||
|
public string? myIpAddress { get; set; }
|
|||
|
public Guid SessionId { get; set; }
|
|||
|
public DateTimeOffset DateCreated { get; set; }
|
|||
|
public DateTimeOffset DateExpires { get; set; }
|
|||
|
}
|