bleh
This commit is contained in:
parent
ac3a282d8b
commit
c8a53ddae9
|
|
@ -1,4 +1,4 @@
|
|||
<Project Sdk="Microsoft.NET.Sdk">
|
||||
<Project Sdk="Microsoft.NET.Sdk">
|
||||
|
||||
<PropertyGroup>
|
||||
<TargetFramework>net7.0</TargetFramework>
|
||||
|
|
@ -6,4 +6,8 @@
|
|||
<Nullable>enable</Nullable>
|
||||
</PropertyGroup>
|
||||
|
||||
<ItemGroup>
|
||||
<Folder Include="Sessions\" />
|
||||
</ItemGroup>
|
||||
|
||||
</Project>
|
||||
|
|
|
|||
|
|
@ -0,0 +1,17 @@
|
|||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace AyCode.Interfaces.StorageHandlers
|
||||
{
|
||||
public interface ISecureStorageHandler
|
||||
{
|
||||
public Task SaveToSecureStorageAsync(string key, string value);
|
||||
public Task<string> GetFromSecureStorageAsync(string key);
|
||||
public Task DeleteFromSecureStorageAsync(string key);
|
||||
public Task ClearAllSecureStorageAsync();
|
||||
|
||||
}
|
||||
}
|
||||
Loading…
Reference in New Issue