WintersBestWebForm/AppState/IAppState.cs

11 lines
272 B
C#

namespace WinterBestCustomerWebForm.AppState;
public interface IAppState
{
bool isInit { get; set; }
string? myIpAddress { get; set; }
Guid SessionId { get; set; }
DateTimeOffset DateCreated { get; set; }
DateTimeOffset DateExpires { get; set; }
}