mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2025-02-23 06:35:13 +01:00
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;
|
||
|
}
|
||
|
}
|