mirror of
https://github.com/hmaxnl/DotBased.git
synced 2025-01-19 02:24:19 +01:00
8 lines
253 B
C#
8 lines
253 B
C#
|
namespace DotBased.ASP.Auth;
|
||
|
|
||
|
public interface ISessionStateProvider
|
||
|
{
|
||
|
public const string SessionStateName = "BasedServerSession";
|
||
|
public Task<Result<string>> GetSessionStateAsync();
|
||
|
public Task<Result> SetSessionStateAsync(string state);
|
||
|
}
|