mirror of
https://github.com/bitwarden/server.git
synced 2026-02-08 18:03:11 +08:00
13 lines
308 B
C#
13 lines
308 B
C#
|
|
using System;
|
|||
|
|
using Bit.Core.Models.Table;
|
|||
|
|
using System.Collections.Generic;
|
|||
|
|
using System.Threading.Tasks;
|
|||
|
|
|
|||
|
|
namespace Bit.Core.Repositories
|
|||
|
|
{
|
|||
|
|
public interface IGroupRepository : IRepository<Group, Guid>
|
|||
|
|
{
|
|||
|
|
Task<ICollection<Group>> GetManyByOrganizationIdAsync(Guid organizationId);
|
|||
|
|
}
|
|||
|
|
}
|