mirror of
https://github.com/bitwarden/android.git
synced 2024-11-01 23:54:06 +03:00
10 lines
No EOL
226 B
C#
10 lines
No EOL
226 B
C#
using System.Threading.Tasks;
|
|
using Bit.App.Models.Api;
|
|
|
|
namespace Bit.App.Abstractions
|
|
{
|
|
public interface ISettingsApiRepository
|
|
{
|
|
Task<ApiResult<DomainsResponse>> GetDomains(bool excluded = false);
|
|
}
|
|
} |