mirror of
https://github.com/aljazceru/btcpayserver.git
synced 2025-12-17 14:04:26 +01:00
12 lines
335 B
C#
12 lines
335 B
C#
using System.Collections.Generic;
|
|
|
|
namespace BTCPayServer.Models
|
|
{
|
|
public class PostRedirectViewModel
|
|
{
|
|
public string AspAction { get; set; }
|
|
public string AspController { get; set; }
|
|
public List<KeyValuePair<string, string>> Parameters { get; set; } = new List<KeyValuePair<string, string>>();
|
|
}
|
|
}
|