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