mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2024-11-19 09:54:30 +01:00
16 lines
446 B
C#
16 lines
446 B
C#
using System.Collections.Generic;
|
|
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 IEnumerable<string> Scope { get; set; }
|
|
}
|
|
}
|