mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2024-11-20 10:40:29 +01:00
16 lines
297 B
C#
16 lines
297 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.IO;
|
|
using System.Linq;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace BTCPayServer.Services
|
|
{
|
|
public class Claims
|
|
{
|
|
public const string SIN = "BITID_SIN";
|
|
|
|
public const string OwnStore = "BTCPAY_OWN_STORE";
|
|
}
|
|
}
|