1
0
mirror of https://github.com/bitwarden/server synced 2026-01-27 23:03:31 +00:00

Fix xmldoc

This commit is contained in:
Sven
2026-01-21 13:29:44 -06:00
parent 4ecf9d811a
commit 502e3d9c66

View File

@@ -19,10 +19,10 @@ public interface IPolicyRequirementQuery
/// <summary>
/// Get a policy requirement for a list of users.
/// The policy requirement represents how one or more policy types should be enforced against the users.
/// </summary>
/// <returns>
/// A list of applicable policy requirements in corresponding order of the submitted user IDs.
/// </returns>
/// </summary>
/// <param name="userIds">The users that you need to enforce the policy against.</param>
/// <typeparam name="T">The IPolicyRequirement that corresponds to the policy you want to enforce.</typeparam>
Task<IEnumerable<T>> GetAsync<T>(IEnumerable<Guid> userIds) where T : IPolicyRequirement;