From 5c6a449f4057e30cd32703d166029831ac46b3e0 Mon Sep 17 00:00:00 2001 From: khalidabuhakmeh Date: Wed, 8 Jan 2025 10:34:31 -0500 Subject: [PATCH] Clarify documentation for LicenseUsageSummary parameters. Updated XML documentation to provide detailed descriptions for parameter usage in the LicenseUsageSummary record. This improves clarity, especially for auditing purposes, and ensures better understanding of the fields. --- .../IdentityServer/Licensing/LicenseUsageSummary.cs | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/identity-server/src/IdentityServer/Licensing/LicenseUsageSummary.cs b/identity-server/src/IdentityServer/Licensing/LicenseUsageSummary.cs index 38451b33a..51dbcf66c 100644 --- a/identity-server/src/IdentityServer/Licensing/LicenseUsageSummary.cs +++ b/identity-server/src/IdentityServer/Licensing/LicenseUsageSummary.cs @@ -8,12 +8,12 @@ namespace Duende.IdentityServer.Licensing; /// -/// Usage summary for the current license. +/// Usage summary for the current IdentityServer instance intended for auditing purposes. /// -/// -/// -/// -/// +/// License edition retrieved from license key. +/// Clients used in the current IdentityServer instance. +/// Issuers used in the current IdentityServer instance. +/// Features used in the current IdentityServer instance. public record LicenseUsageSummary( string LicenseEdition, IReadOnlyCollection ClientsUsed,