2026-02-27 17:57:42 +00:00
|
|
|
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; }
|
|
|
|
|
|
2026-03-16 19:15:04 +01:00
|
|
|
public bool Confidential { get; set; }
|
2026-02-27 17:57:42 +00:00
|
|
|
public bool AllowClientCredentialsFlow { get; set; } = false;
|
|
|
|
|
|
|
|
|
|
public required DateTime CreatedAt { get; set; }
|
2026-03-16 19:15:04 +01:00
|
|
|
|
|
|
|
|
public string? Secret { get; set; }
|
2026-02-27 17:57:42 +00:00
|
|
|
}
|