mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2025-03-13 11:35:51 +01:00
10 lines
289 B
C#
10 lines
289 B
C#
#nullable enable
|
|
namespace BTCPayServer.Client.App.Models;
|
|
|
|
public class AcceptInviteResult
|
|
{
|
|
public string? Email { get; set; }
|
|
public bool? RequiresUserApproval { get; set; }
|
|
public bool? EmailHasBeenConfirmed { get; set; }
|
|
public string? PasswordSetCode { get; set; }
|
|
}
|