mirror of
https://github.com/bitwarden/server
synced 2025-12-25 12:43:14 +00:00
13 lines
329 B
C#
13 lines
329 B
C#
using System.Collections.Generic;
|
|
using System.Threading.Tasks;
|
|
using Bit.Core.Domains;
|
|
|
|
namespace Bit.Core.Repositories
|
|
{
|
|
public interface ICipherRepository
|
|
{
|
|
Task UpdateUserEmailPasswordAndCiphersAsync(User user, IEnumerable<dynamic> ciphers);
|
|
Task CreateAsync(IEnumerable<dynamic> ciphers);
|
|
}
|
|
}
|