Skip to content

Commit

Permalink
Merge pull request #1715 from DuendeSoftware/ka-usage-summary-deux
Browse files Browse the repository at this point in the history
Clarify documentation for LicenseUsageSummary parameters.
  • Loading branch information
khalidabuhakmeh authored Jan 8, 2025
2 parents f6b1590 + 54bcfd8 commit 0ed4373
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions src/IdentityServer/Licensing/LicenseUsageSummary.cs
Original file line number Diff line number Diff line change
Expand Up @@ -8,12 +8,12 @@
namespace Duende.IdentityServer.Licensing;

/// <summary>
/// Usage summary for the current license.
/// Usage summary for the current IdentityServer instance intended for auditing purposes.
/// </summary>
/// <param name="LicenseEdition"></param>
/// <param name="ClientsUsed"></param>
/// <param name="IssuersUsed"></param>
/// <param name="FeaturesUsed"></param>
/// <param name="LicenseEdition">License edition retrieved from license key.</param>
/// <param name="ClientsUsed">Clients used in the current IdentityServer instance.</param>
/// <param name="IssuersUsed">Issuers used in the current IdentityServer instance.</param>
/// <param name="FeaturesUsed">Features used in the current IdentityServer instance.</param>
public record LicenseUsageSummary(
string LicenseEdition,
IReadOnlyCollection<string> ClientsUsed,
Expand Down

0 comments on commit 0ed4373

Please sign in to comment.