mirror of
https://github.com/bitwarden/server.git
synced 2025-07-05 01:52:49 -05:00
Added cipher service with bulk import to account controller
This commit is contained in:
11
src/Core/Services/ICipherService.cs
Normal file
11
src/Core/Services/ICipherService.cs
Normal file
@ -0,0 +1,11 @@
|
||||
using System.Collections.Generic;
|
||||
using System.Threading.Tasks;
|
||||
using Bit.Core.Domains;
|
||||
|
||||
namespace Bit.Core.Services
|
||||
{
|
||||
public interface ICipherService
|
||||
{
|
||||
Task ImportCiphersAsync(List<Folder> folders, List<Site> sites, IEnumerable<KeyValuePair<int, int>> siteRelationships);
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user