mirror of
https://github.com/bitwarden/server.git
synced 2025-04-22 13:35:10 -05:00
15 lines
368 B
C#
15 lines
368 B
C#
using System;
|
|
using System.Threading.Tasks;
|
|
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);
|
|
}
|
|
}
|