1
0
mirror of https://github.com/bitwarden/server.git synced 2024-12-02 13:53:23 +01:00
bitwarden-server/src/Core/Repositories/ICipherRepository.cs

13 lines
329 B
C#
Raw Normal View History

2015-12-09 04:57:38 +01:00
using System.Collections.Generic;
using System.Threading.Tasks;
using Bit.Core.Domains;
2015-12-09 04:57:38 +01:00
namespace Bit.Core.Repositories
{
public interface ICipherRepository
{
Task UpdateUserEmailPasswordAndCiphersAsync(User user, IEnumerable<dynamic> ciphers);
Task CreateAsync(IEnumerable<dynamic> ciphers);
2015-12-09 04:57:38 +01:00
}
}