mirror of
https://github.com/bitwarden/server.git
synced 2025-07-06 10:32:49 -05:00
rename foles for subvault => collection
This commit is contained in:
15
src/Core/Repositories/ICollectionRepository.cs
Normal file
15
src/Core/Repositories/ICollectionRepository.cs
Normal file
@ -0,0 +1,15 @@
|
||||
using System;
|
||||
using System.Threading.Tasks;
|
||||
using Bit.Core.Models.Table;
|
||||
using System.Collections.Generic;
|
||||
|
||||
namespace Bit.Core.Repositories
|
||||
{
|
||||
public interface ICollectionRepository : IRepository<Collection, Guid>
|
||||
{
|
||||
Task<int> GetCountByOrganizationIdAsync(Guid organizationId);
|
||||
Task<ICollection<Collection>> GetManyByOrganizationIdAsync(Guid organizationId);
|
||||
Task<ICollection<Collection>> GetManyByUserIdAsync(Guid userId);
|
||||
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user