WintersBestWebForm/AppState/MdlAppState.cs

11 lines
317 B
C#
Raw Normal View History

2025-09-18 12:54:02 -04:00
namespace WinterBestCustomerWebForm.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; }
}