mirror of
https://github.com/bitwarden/server
synced 2025-12-12 14:23:38 +00:00
14 lines
383 B
C#
14 lines
383 B
C#
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);
|
|
Task<ICollection<SubvaultCipher>> GetManyByUserIdCipherIdAsync(Guid userId, Guid cipherId);
|
|
}
|
|
}
|