using FluentResults; namespace NexusReader.Application.Abstractions.Services; public interface INativeStorageService { Task> GetSecureString(string key); Task SaveSecureString(string key, string value); Task> GetBool(string key); Task SaveBool(string key, bool value); Task> GetInt(string key); Task SaveInt(string key, int value); Task ClearAll(); }