9 lines
215 B
C#
9 lines
215 B
C#
namespace BTCPayApp.CommonServer.Models;
|
|
|
|
public class SignupResult
|
|
{
|
|
public string? Email { get; set; }
|
|
public bool RequiresConfirmedEmail { get; set; }
|
|
public bool RequiresUserApproval { get; set; }
|
|
}
|