IdentityShroud/IdentityShroud.Core/DTO/Client/ClientCreateRequest.cs
2026-02-22 09:27:57 +01:00

10 lines
No EOL
321 B
C#

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