namespace IdentityShroud.Core.Contracts; public record ClientCreateRequest( string ClientId, string? Name = null, string? Description = null, string? SignatureAlgorithm = null, bool Confidential = false, bool AllowClientCredentialsFlow = false, bool GenerateSecret = false);