mirror of
https://github.com/aljazceru/BTCPayServerPlugins.git
synced 2025-12-17 23:54:26 +01:00
13 lines
291 B
C#
13 lines
291 B
C#
using Newtonsoft.Json;
|
|
|
|
namespace WalletWasabi.Affiliation.Models.CoinjoinRequest;
|
|
|
|
public record Header
|
|
{
|
|
[JsonProperty(PropertyName = "title")]
|
|
public static readonly string Title = "payment request";
|
|
|
|
[JsonProperty(PropertyName = "version")]
|
|
public static readonly int Version = 1;
|
|
}
|