WintersBestWebForm/AppState/IAppState.cs

11 lines
272 B
C#
Raw Normal View History

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