using System.Collections.Generic; using Teknik.IdentityServer.Models; namespace Teknik.IdentityServer.ViewModels { 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 ResourceScopes { get; set; } } }