mirror of
https://github.com/bitwarden/server.git
synced 2025-07-06 18:42:49 -05:00
initial commit of source
This commit is contained in:
13
src/Core/Repositories/IFolderRepository.cs
Normal file
13
src/Core/Repositories/IFolderRepository.cs
Normal file
@ -0,0 +1,13 @@
|
||||
using System.Collections.Generic;
|
||||
using System.Threading.Tasks;
|
||||
using Bit.Core.Domains;
|
||||
|
||||
namespace Bit.Core.Repositories
|
||||
{
|
||||
public interface IFolderRepository : IRepository<Folder>
|
||||
{
|
||||
Task<Folder> GetByIdAsync(string id, string userId);
|
||||
Task<ICollection<Folder>> GetManyByUserIdAsync(string userId);
|
||||
Task<ICollection<Folder>> GetManyByUserIdAsync(string userId, bool dirty);
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user