10 lines
321 B
C#
10 lines
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; }
|
||
|
|
}
|