btcpayserver/BTCPayServer/Services/PoliciesSettings.cs

20 lines
420 B
C#
Raw Normal View History

2017-09-27 14:18:09 +09:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
2017-12-04 00:55:39 +09:00
using Newtonsoft.Json;
2017-09-27 14:18:09 +09:00
namespace BTCPayServer.Services
{
public class PoliciesSettings
{
public bool RequiresConfirmedEmail
{
get; set;
}
2017-12-04 00:55:39 +09:00
[JsonProperty(DefaultValueHandling = DefaultValueHandling.Populate)]
public bool LockSubscription { get; set; }
}
2017-09-27 14:18:09 +09:00
}