mirror of
https://github.com/bitwarden/mobile.git
synced 2025-03-12 13:19:10 +01:00
15 lines
360 B
C#
15 lines
360 B
C#
using System.Collections.Generic;
|
|
using System.Threading.Tasks;
|
|
using Bit.App.Models;
|
|
using Bit.App.Models.Api;
|
|
|
|
namespace Bit.App.Abstractions
|
|
{
|
|
public interface ISiteService
|
|
{
|
|
Task<IEnumerable<Site>> GetAllAsync();
|
|
Task<ApiResult<SiteResponse>> SaveAsync(Site site);
|
|
Task<ApiResult<object>> DeleteAsync(string id);
|
|
}
|
|
}
|