Files
btcpayserver/BTCPayServer.Client/Models/FakePaymentResponse.cs
Wouter Samaey e842a00402 Easier payment testing (#2672)
* Easier payment testing

* WIP, more TODOs and some cleanup. Help is appreciated.

* Added dummy button to expire monitoring (doesn't work yet)

* Added TODO

* Make fake tab default if present

* Split controller and change wording from fake to testing

* Extract and simplify checkout testing UI

* Restrict testing access to regtest

Co-authored-by: Dennis Reimann <mail@dennisreimann.de>
2021-10-11 11:11:02 +09:00

13 lines
299 B
C#

using System;
namespace BTCPayServer.Client.Models
{
public class FakePaymentResponse
{
public Decimal AmountRemaining { get; set; }
public String Txid { get; set; }
public String SuccessMessage { get; set; }
public String ErrorMessage { get; set; }
}
}