btcpayserver/BTCPayServer/Models/Authorization/AuthorizeViewModel.cs
2020-06-28 21:44:35 -05:00

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; }
}
}