17 lines
478 B
C#
17 lines
478 B
C#
namespace ZeroFramework.IdentityServer.API.Models.Consents
|
|
{
|
|
public class ConsentViewModel : ConsentInputModel
|
|
{
|
|
public string? ClientName { get; set; }
|
|
|
|
public string? ClientUrl { get; set; }
|
|
|
|
public string? ClientLogoUrl { get; set; }
|
|
|
|
public bool AllowRememberConsent { get; set; }
|
|
|
|
public IEnumerable<ScopeViewModel>? IdentityScopes { get; set; }
|
|
|
|
public IEnumerable<ScopeViewModel>? ApiScopes { get; set; }
|
|
}
|
|
} |