yavsc/src/Yavsc/Pages/Ciba/InputModel.cs

12 lines
377 B
C#
Raw Normal View History

2024-02-25 18:05:10 +00:00
// 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<string> ScopesConsented { get; set; } = new List<string>();
public string? Id { get; set; }
public string? Description { get; set; }
}