1
0
mirror of https://github.com/bitwarden/server synced 2025-12-14 15:23:42 +00:00

subvault ciphers

This commit is contained in:
Kyle Spearrin
2017-03-23 17:43:12 -04:00
parent 072fb727a8
commit 47477f6ca5
5 changed files with 74 additions and 0 deletions

View 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);
}
}