mirror of
https://github.com/aljazceru/btcpayserver.git
synced 2025-12-18 06:24:24 +01:00
16 lines
544 B
C#
16 lines
544 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 MultiValueDictionary<string, string>();
|
|
public Dictionary<string, string> RouteParameters { get; set; } = new Dictionary<string, string>();
|
|
}
|
|
}
|