bitwarden-android/src/App/Abstractions/Services/ISettingsService.cs

10 lines
229 B
C#

using System.Collections.Generic;
using System.Threading.Tasks;
namespace Bit.App.Abstractions
{
public interface ISettingsService
{
Task<IEnumerable<IEnumerable<string>>> GetEquivalentDomainsAsync();
}
}