namespace Microsoft.eShopOnContainers.Services.Identity.API.Models.ConsentViewModels { 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; } } }