diff --git a/AyCode.Interfaces/AyCode.Interfaces.csproj b/AyCode.Interfaces/AyCode.Interfaces.csproj index cfadb03..db222fe 100644 --- a/AyCode.Interfaces/AyCode.Interfaces.csproj +++ b/AyCode.Interfaces/AyCode.Interfaces.csproj @@ -1,4 +1,4 @@ - + net7.0 @@ -6,4 +6,8 @@ enable + + + + diff --git a/AyCode.Interfaces/StorageHandlers/ISecureStorageHandler.cs b/AyCode.Interfaces/StorageHandlers/ISecureStorageHandler.cs new file mode 100644 index 0000000..8621686 --- /dev/null +++ b/AyCode.Interfaces/StorageHandlers/ISecureStorageHandler.cs @@ -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 GetFromSecureStorageAsync(string key); + public Task DeleteFromSecureStorageAsync(string key); + public Task ClearAllSecureStorageAsync(); + + } +}