using Bit.Core.AdminConsole.Enums; using Bit.Core.AdminConsole.Models.Data.Organizations.Policies; namespace Bit.Core.AdminConsole.OrganizationFeatures.Policies; public interface IPolicyQuery { /// /// Retrieves a summary view of an organization's usage of a policy specified by the . /// /// /// This query is the entrypoint for consumers interested in understanding how a particular /// has been applied to an organization; the resultant is not indicative of explicit /// policy configuration. /// Task RunAsync(Guid organizationId, PolicyType policyType); }