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? IdentityScopes { get; set; } public IEnumerable? ApiScopes { get; set; } } }