mirror of
https://github.com/hmaxnl/DotBased.git
synced 2025-04-26 07:07:54 +02:00
8 lines
259 B
C#
Executable File
8 lines
259 B
C#
Executable File
namespace DotBased.ASP.Auth;
|
|
|
|
public interface ISessionStateProvider
|
|
{
|
|
public const string SessionStateName = "BasedServerSession";
|
|
public Task<ResultOld<string>> GetSessionStateAsync();
|
|
public Task<ResultOld> SetSessionStateAsync(string state);
|
|
} |