mirror of
https://github.com/bitwarden/mobile
synced 2025-12-28 06:03:40 +00:00
10 lines
226 B
C#
10 lines
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);
|
|
}
|
|
} |