mirror of
https://github.com/bitwarden/server.git
synced 2025-04-28 08:12:22 -05:00
14 lines
352 B
C#
14 lines
352 B
C#
using System;
|
|
using Bit.Core.Models.Table;
|
|
using System.Threading.Tasks;
|
|
using System.Collections.Generic;
|
|
|
|
namespace Bit.Core.Repositories
|
|
{
|
|
public interface IFolderRepository : IRepository<Folder, Guid>
|
|
{
|
|
Task<Folder> GetByIdAsync(Guid id, Guid userId);
|
|
Task<ICollection<Folder>> GetManyByUserIdAsync(Guid userId);
|
|
}
|
|
}
|