namespace Fengling.Console.Models.Dtos; public record UpdateClientDto { public string? DisplayName { get; init; } public string[]? RedirectUris { get; init; } public string[]? PostLogoutRedirectUris { get; init; } public string[]? Scopes { get; init; } public string[]? GrantTypes { get; init; } public string? ClientType { get; init; } public string? ConsentType { get; init; } public string? Status { get; init; } public string? Description { get; init; } }