mirror of
https://github.com/bitwarden/mobile
synced 2025-12-25 20:53:25 +00:00
13 lines
360 B
C#
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);
|
|
}
|
|
} |