btcpayserver/BTCPayServer/Models/PostRedictViewModel.cs
2023-02-23 09:52:37 +01:00

16 lines
482 B
C#

using System.Collections.Generic;
namespace BTCPayServer.Models
{
public class PostRedirectViewModel
{
public string AspAction { get; set; }
public string AspController { get; set; }
public string FormUrl { get; set; }
public bool AllowExternal { get; set; }
public MultiValueDictionary<string, string> FormParameters { get; set; } = new ();
public Dictionary<string, string> RouteParameters { get; set; } = new ();
}
}