mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2025-03-13 19:37:37 +01:00
* 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>
10 lines
207 B
C#
10 lines
207 B
C#
using System;
|
|
|
|
namespace BTCPayServer.Client.Models
|
|
{
|
|
public class ExpireInvoiceResponse
|
|
{
|
|
public String SuccessMessage { get; set; }
|
|
public String ErrorMessage { get; set; }
|
|
}
|
|
}
|