85b362e8cd
- add the standalone HrynCo.Common solution and projects - include the shared common library source and tests - add package metadata and a repo gitignore
20 lines
517 B
C#
20 lines
517 B
C#
namespace HrynCo.Common.Caching;
|
|
|
|
using System;
|
|
using System.Threading;
|
|
using System.Threading.Tasks;
|
|
|
|
public interface ISessionPromptStore
|
|
{
|
|
Task<string?> GetAsync(Guid userId, string provider, CancellationToken cancellationToken = default);
|
|
|
|
Task RemoveAsync(Guid userId, string provider, CancellationToken cancellationToken = default);
|
|
|
|
Task SaveAsync(
|
|
Guid userId,
|
|
string provider,
|
|
string prompt,
|
|
TimeSpan ttl,
|
|
CancellationToken cancellationToken = default);
|
|
}
|