Files
btcpayserver/BTCPayServer/Models/Authorization/AuthorizeViewModel.cs

15 lines
402 B
C#

using System.ComponentModel.DataAnnotations;
using Microsoft.AspNetCore.Mvc.ModelBinding;
namespace BTCPayServer.Models.Authorization
{
public class AuthorizeViewModel
{
[Display(Name = "Application")] public string ApplicationName { get; set; }
[BindNever] public string RequestId { get; set; }
[Display(Name = "Scope")] public string Scope { get; set; }
}
}