// Copyright (c) Duende Software. All rights reserved. // See LICENSE in the project root for license information. namespace Yavsc.Pages.Device; public class ViewModel { 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; } = Enumerable.Empty(); public IEnumerable ApiScopes { get; set; } = Enumerable.Empty(); } public class ScopeViewModel { public string? Value { get; set; } public string? DisplayName { get; set; } public string? Description { get; set; } public bool Emphasize { get; set; } public bool Required { get; set; } public bool Checked { get; set; } }