namespace IdentityShroud.Core.Contracts; public class ClientCreateRequest { public required string ClientId { get; set; } public string? Name { get; set; } public string? Description { get; set; } public string? SignatureAlgorithm { get; set; } public bool? AllowClientCredentialsFlow { get; set; } }