btcpayserver/BTCPayApp.CommonServer/SignupResult.cs
2024-07-25 18:57:30 +02:00

8 lines
208 B
C#

namespace BTCPayApp.CommonServer;
public class SignupResult
{
public string? Email { get; set; }
public bool RequiresConfirmedEmail { get; set; }
public bool RequiresUserApproval { get; set; }
}