Files
btcpayserver/BTCPayServer/Models/PostRedictViewModel.cs
nicolas.dorier 51514252b6 Run dotnet format
2020-06-28 17:55:27 +09:00

15 lines
401 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>>();
}
}