Initial project snapshot
This commit is contained in:
@@ -0,0 +1,10 @@
|
||||
using RemoteAccessPlatform.Windows.Models;
|
||||
|
||||
namespace RemoteAccessPlatform.Windows.Contracts;
|
||||
|
||||
public interface ITokenStore
|
||||
{
|
||||
Task<StoredAuthState?> LoadAsync(CancellationToken cancellationToken);
|
||||
Task SaveAsync(StoredAuthState state, CancellationToken cancellationToken);
|
||||
Task ClearAsync(CancellationToken cancellationToken);
|
||||
}
|
||||
Reference in New Issue
Block a user