btcpayserver/BTCPayServer/Models/PostRedictViewModel.cs

14 lines
380 B
C#
Raw Normal View History

using System.Collections.Generic;
namespace BTCPayServer.Models
{
2019-11-08 21:42:34 +09:00
public class PostRedirectViewModel
{
public string AspAction { get; set; }
public string AspController { get; set; }
public string FormUrl { get; set; }
2020-06-28 17:55:27 +09:00
public List<KeyValuePair<string, string>> Parameters { get; set; } = new List<KeyValuePair<string, string>>();
}
}