Remove types from BTCPayServer.Client

This commit is contained in:
nicolas.dorier
2021-10-11 18:01:32 +09:00
parent 1037fe0b14
commit 0033aab03e
3 changed files with 16 additions and 36 deletions

View File

@@ -1,9 +0,0 @@
using System;
namespace BTCPayServer.Client.Models
{
public class FakePaymentRequest
{
public Decimal Amount { get; set; }
}
}

View File

@@ -1,12 +0,0 @@
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; }
}
}