1
0
mirror of https://github.com/bitwarden/mobile.git synced 2024-09-27 03:52:57 +02:00
bitwarden-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);
}
}