using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace TIAMWebApp.Shared.Application.Interfaces { public interface ISecureStorageHandler { public Task SaveToSecureStorageAsync(string key, string value); public Task GetFromSecureStorageAsync(string key); } }