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

10 lines
321 B
C#
Raw Normal View History

2026-02-22 09:27:48 +01:00
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; }
}