btcpayserver/BTCPayServer.Client/Models/PatchOnChainTransactionRequest.cs

13 lines
265 B
C#
Raw Normal View History

#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;
}
}