mirror of
https://github.com/aljazceru/btcpayserver.git
synced 2025-12-27 19:04:37 +01:00
15 lines
402 B
C#
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; }
|
|
}
|
|
}
|