1
0
mirror of https://github.com/bitwarden/mobile synced 2025-12-25 20:53:25 +00:00
Files
mobile/src/Core/Abstractions/ISettingsService.cs
2019-04-11 16:27:45 -04:00

13 lines
360 B
C#

using System.Collections.Generic;
using System.Threading.Tasks;
namespace Bit.Core.Abstractions
{
public interface ISettingsService
{
Task ClearAsync(string userId);
void ClearCache();
Task<List<List<string>>> GetEquivalentDomainsAsync();
Task SetEquivalentDomainsAsync(List<List<string>> equivalentDomains);
}
}