From 54bcfd8a4da7dea8fd5854a370b62ee04a14d5de 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. --- src/IdentityServer/Licensing/LicenseUsageSummary.cs | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/IdentityServer/Licensing/LicenseUsageSummary.cs b/src/IdentityServer/Licensing/LicenseUsageSummary.cs index 38451b33a..51dbcf66c 100644 --- a/src/IdentityServer/Licensing/LicenseUsageSummary.cs +++ b/src/IdentityServer/Licensing/LicenseUsageSummary.cs @@ -8,12 +8,12 @@ using System.Collections.Generic; 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,