// Copyright (c) Duende Software. All rights reserved. // See LICENSE in the project root for license information. namespace IdentitySvc.Pages.Device; public class InputModel { public string? Button { get; set; } public IEnumerable ScopesConsented { get; set; } = new List(); public bool RememberConsent { get; set; } = true; public string? ReturnUrl { get; set; } public string? Description { get; set; } public string? UserCode { get; set; } }