mirror of
https://github.com/bitwarden/server.git
synced 2026-02-02 15:13:19 +08:00
14 lines
386 B
C#
14 lines
386 B
C#
using System.Collections.Generic;
|
|
using System.Threading.Tasks;
|
|
using Bit.Core.Domains;
|
|
|
|
namespace Bit.Core.Services
|
|
{
|
|
public interface ICipherService
|
|
{
|
|
Task SaveAsync(Cipher cipher);
|
|
Task DeleteAsync(Cipher cipher);
|
|
Task ImportCiphersAsync(List<Cipher> folders, List<Cipher> ciphers, IEnumerable<KeyValuePair<int, int>> folderRelationships);
|
|
}
|
|
}
|