mirror of
https://github.com/bitwarden/server.git
synced 2026-02-02 15:13:19 +08:00
11 lines
223 B
C#
11 lines
223 B
C#
|
|
using System.Collections.Generic;
|
|||
|
|
using System.Threading.Tasks;
|
|||
|
|
|
|||
|
|
namespace Bit.Core.Repositories
|
|||
|
|
{
|
|||
|
|
public interface ICipherRepository
|
|||
|
|
{
|
|||
|
|
Task UpdateDirtyCiphersAsync(IEnumerable<dynamic> ciphers);
|
|||
|
|
}
|
|||
|
|
}
|