btcpayserver/BTCPayServer/Models/PostRedictViewModel.cs

15 lines
401 B
C#
Raw Normal View History

using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
namespace BTCPayServer.Models
{
2019-11-08 13:42:34 +01:00
public class PostRedirectViewModel
{
public string AspAction { get; set; }
public string AspController { get; set; }
2020-06-28 10:55:27 +02:00
public List<KeyValuePair<string, string>> Parameters { get; set; } = new List<KeyValuePair<string, string>>();
}
}