2019-11-08 12:21:33 +01:00
|
|
|
using System.Collections.Generic;
|
|
|
|
|
|
|
|
namespace BTCPayServer.Models
|
|
|
|
{
|
2019-11-08 13:42:34 +01:00
|
|
|
public class PostRedirectViewModel
|
2019-11-08 12:21:33 +01:00
|
|
|
{
|
|
|
|
public string AspAction { get; set; }
|
|
|
|
public string AspController { get; set; }
|
2020-09-17 11:37:49 +02:00
|
|
|
public string FormUrl { get; set; }
|
|
|
|
|
2022-02-10 04:24:28 +01:00
|
|
|
public MultiValueDictionary<string, string> FormParameters { get; set; } = new MultiValueDictionary<string, string>();
|
|
|
|
public Dictionary<string, string> RouteParameters { get; set; } = new Dictionary<string, string>();
|
2019-11-08 12:21:33 +01:00
|
|
|
}
|
|
|
|
}
|