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
Kyle Spearrin 24a5a16723 wip
2016-05-03 19:49:49 -04:00

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);
}
}