// Copyright (c) Duende Software. All rights reserved. // See LICENSE in the project root for license information. namespace Yavsc.Pages.Ciba; public class InputModel { public string? Button { get; set; } public IEnumerable ScopesConsented { get; set; } = new List(); public string? Id { get; set; } public string? Description { get; set; } }