16 lines
458 B
C#
16 lines
458 B
C#
|
|
namespace IdentityShroud.Api;
|
||
|
|
|
||
|
|
public record ClientRepresentation
|
||
|
|
{
|
||
|
|
public int Id { get; set; }
|
||
|
|
public Guid RealmId { get; set; }
|
||
|
|
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; } = false;
|
||
|
|
|
||
|
|
public required DateTime CreatedAt { get; set; }
|
||
|
|
}
|