mirror of
https://github.com/DuendeSoftware/products
synced 2026-05-24 09:28:24 +00:00
Merge pull request #1715 from DuendeSoftware/ka-usage-summary-deux
Clarify documentation for LicenseUsageSummary parameters.
This commit is contained in:
commit
0ed437316b
1 changed files with 5 additions and 5 deletions
|
|
@ -8,12 +8,12 @@ using System.Collections.Generic;
|
|||
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,
|
||||
|
|
|
|||
Loading…
Reference in a new issue