mirror of
https://github.com/bitwarden/mobile
synced 2025-12-25 12:43:39 +00:00
12 lines
268 B
C#
12 lines
268 B
C#
using System.Threading.Tasks;
|
|
|
|
namespace Bit.Core.Abstractions
|
|
{
|
|
public interface IStateService
|
|
{
|
|
Task<T> GetAsync<T>(string key);
|
|
Task RemoveAsync(string key);
|
|
Task SaveAsync<T>(string key, T obj);
|
|
Task PurgeAsync();
|
|
}
|
|
} |