btcpayserver/BTCPayApp.CommonServer/SignupResult.cs

9 lines
208 B
C#
Raw Normal View History

2024-04-11 11:06:08 +02:00
namespace BTCPayApp.CommonServer;
public class SignupResult
{
2024-04-15 22:24:07 +02:00
public string? Email { get; set; }
2024-04-11 11:06:08 +02:00
public bool RequiresConfirmedEmail { get; set; }
public bool RequiresUserApproval { get; set; }
}