1
0
mirror of https://github.com/bitwarden/mobile synced 2025-12-15 07:43:37 +00:00

state service

This commit is contained in:
Kyle Spearrin
2019-04-09 17:01:55 -04:00
parent 13a2206735
commit 963b27fd71
2 changed files with 49 additions and 0 deletions

View File

@@ -0,0 +1,11 @@
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);
}
}