2026-02-27 17:57:42 +00:00
|
|
|
namespace IdentityShroud.Core.Contracts;
|
|
|
|
|
|
2026-03-16 19:15:04 +01:00
|
|
|
public record ClientCreateRequest(
|
|
|
|
|
string ClientId,
|
|
|
|
|
string? Name = null,
|
|
|
|
|
string? Description = null,
|
|
|
|
|
string? SignatureAlgorithm = null,
|
|
|
|
|
bool Confidential = false,
|
|
|
|
|
bool AllowClientCredentialsFlow = false,
|
|
|
|
|
bool GenerateSecret = false);
|