btcpayserver/BTCPayApp.CommonServer/SignupResult.cs

9 lines
207 B
C#
Raw Normal View History

2024-04-11 11:06:08 +02:00
namespace BTCPayApp.CommonServer;
public class SignupResult
{
public string Email { get; set; }
public bool RequiresConfirmedEmail { get; set; }
public bool RequiresUserApproval { get; set; }
}