mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2025-02-24 22:58:28 +01:00
9 lines
207 B
C#
9 lines
207 B
C#
|
namespace BTCPayApp.CommonServer;
|
||
|
|
||
|
public class SignupResult
|
||
|
{
|
||
|
public string Email { get; set; }
|
||
|
public bool RequiresConfirmedEmail { get; set; }
|
||
|
public bool RequiresUserApproval { get; set; }
|
||
|
}
|