mirror of
https://github.com/bitwarden/android.git
synced 2024-11-01 15:45:42 +03:00
10 lines
229 B
C#
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();
|
|
}
|
|
}
|