btcpayserver/BTCPayServer/Models/PostRedictViewModel.cs

16 lines
480 B
C#
Raw Normal View History

using System.Collections.Generic;
namespace BTCPayServer.Models
{
2019-11-08 13:42:34 +01:00
public class PostRedirectViewModel
{
public string AspAction { get; set; }
public string AspController { get; set; }
public string FormUrl { get; set; }
public bool AllowExternal { get; set; }
2023-04-10 04:07:03 +02:00
public MultiValueDictionary<string, string> FormParameters { get; set; } = new();
public Dictionary<string, string> RouteParameters { get; set; } = new();
}
}