1
0
mirror of https://github.com/bitwarden/server.git synced 2024-12-04 14:13:28 +01:00
bitwarden-server/src/Core/Services/IPushService.cs

15 lines
368 B
C#
Raw Normal View History

using System;
using System.Threading.Tasks;
2017-03-09 03:45:08 +01:00
using Bit.Core.Models.Table;
namespace Bit.Core.Services
{
public interface IPushService
{
Task PushSyncCipherCreateAsync(Cipher cipher);
Task PushSyncCipherUpdateAsync(Cipher cipher);
Task PushSyncCipherDeleteAsync(Cipher cipher);
Task PushSyncCiphersAsync(Guid userId);
}
}