btcpayserver/BTCPayServer.Client/Models/LabelData.cs

17 lines
369 B
C#
Raw Normal View History

using System;
using System.Collections.Generic;
using Newtonsoft.Json;
using Newtonsoft.Json.Linq;
namespace BTCPayServer.Client.Models
{
[Obsolete]
public class LabelData
{
public string Type { get; set; }
public string Text { get; set; }
[JsonExtensionData] public Dictionary<string, JToken> AdditionalData { get; set; }
}
2021-12-31 16:59:02 +09:00
}