mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2024-11-19 18:11:36 +01:00
15 lines
400 B
C#
15 lines
400 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Threading.Tasks;
|
|
|
|
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>>();
|
|
}
|
|
}
|