mirror of
https://github.com/bitwarden/server
synced 2026-01-03 09:03:44 +00: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);
|
|
}
|
|
}
|