btcpayserver/BTCPayApp.CommonServer/SignupResult.cs
2024-07-11 15:57:28 +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; }
}