mirror of
https://github.com/bitwarden/server.git
synced 2026-02-01 14:43:10 +08:00
15 lines
452 B
C#
15 lines
452 B
C#
using System;
|
|
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>> GetManyByRevisionDateAsync(string userId, DateTime sinceRevisionDate);
|
|
}
|
|
}
|