mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2025-01-18 21:32:27 +01:00
23d383be67
* 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"
13 lines
265 B
C#
13 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;
|
|
}
|
|
}
|