1
0
mirror of https://github.com/bitwarden/mobile synced 2026-01-06 02:23:57 +00:00

sync domain settings

This commit is contained in:
Kyle Spearrin
2017-02-08 22:04:07 -05:00
parent 2c1ebc0439
commit 2a1bd92e1a
7 changed files with 64 additions and 20 deletions

View File

@@ -1,11 +1,10 @@
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);
Task<ApiResult<DomainsResponse>> GetDomains(bool excluded = false);
}
}