mirror of
https://github.com/bitwarden/mobile
synced 2026-01-04 17:43:17 +00:00
sync domain settings
This commit is contained in:
@@ -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);
|
||||
}
|
||||
}
|
||||
@@ -1,9 +1,10 @@
|
||||
using System.Collections.Generic;
|
||||
using System.Threading.Tasks;
|
||||
using Bit.App.Models.Data;
|
||||
|
||||
namespace Bit.App.Abstractions
|
||||
{
|
||||
public interface ISettingsRepository
|
||||
public interface ISettingsRepository : IRepository<SettingsData, string>
|
||||
{
|
||||
Task<IEnumerable<IEnumerable<string>>> GetEquivablentDomains(string userId);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user