IdentityShroud/IdentityShroud.Core/DTO/Client/ClientCreateRequest.cs

10 lines
No EOL
303 B
C#

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);