mirror of
https://github.com/bitwarden/server
synced 2025-12-14 15:23:42 +00:00
subvault ciphers
This commit is contained in:
12
src/Core/Repositories/ISubvaultCipherRepository.cs
Normal file
12
src/Core/Repositories/ISubvaultCipherRepository.cs
Normal file
@@ -0,0 +1,12 @@
|
||||
using System;
|
||||
using System.Threading.Tasks;
|
||||
using Bit.Core.Models.Table;
|
||||
using System.Collections.Generic;
|
||||
|
||||
namespace Bit.Core.Repositories
|
||||
{
|
||||
public interface ISubvaultCipherRepository
|
||||
{
|
||||
Task<ICollection<SubvaultCipher>> GetManyByUserIdAsync(Guid userId);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user