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