btcpayserver/BTCPayServer/Services/PoliciesSettings.cs
2017-09-27 14:18:09 +09:00

15 lines
238 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
namespace BTCPayServer.Services
{
public class PoliciesSettings
{
public bool RequiresConfirmedEmail
{
get; set;
}
}
}