mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2025-02-24 14:50:50 +01:00
8 lines
208 B
C#
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; }
|
|
}
|