mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2025-02-22 22:25:28 +01:00
* Add transaction info patch endpoint * Add "#nullable enable" to LabelFactory * Add Swagger docs * Update OnChain to onchain * update feeRate to feerate * Add test * replace "Onchain" with "onchain"
12 lines
265 B
C#
12 lines
265 B
C#
#nullable enable
|
|
using System.Collections.Generic;
|
|
|
|
namespace BTCPayServer.Client.Models
|
|
{
|
|
public class PatchOnChainTransactionRequest
|
|
{
|
|
|
|
public string? Comment { get; set; } = null;
|
|
public List<string>? Labels { get; set; } = null;
|
|
}
|
|
}
|