1
0
mirror of https://github.com/bitwarden/mobile.git synced 2025-03-12 13:19:10 +01:00
bitwarden-mobile/src/App/Abstractions/Services/ISiteService.cs

15 lines
360 B
C#
Raw Normal View History

2016-05-02 08:52:09 +02:00
using System.Collections.Generic;
using System.Threading.Tasks;
using Bit.App.Models;
2016-05-03 08:08:50 +02:00
using Bit.App.Models.Api;
2016-05-02 08:52:09 +02:00
namespace Bit.App.Abstractions
{
public interface ISiteService
{
Task<IEnumerable<Site>> GetAllAsync();
2016-05-03 08:08:50 +02:00
Task<ApiResult<SiteResponse>> SaveAsync(Site site);
2016-05-04 01:49:49 +02:00
Task<ApiResult<object>> DeleteAsync(string id);
2016-05-02 08:52:09 +02:00
}
}