btcpayserver/BTCPayServer/Services/Claims.cs

16 lines
297 B
C#
Raw Normal View History

2018-04-27 19:09:24 +02:00
using System;
using System.Collections.Generic;
using System.IO;
2018-04-27 19:09:24 +02:00
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";
2018-04-27 19:09:24 +02:00
}
}