mirror of
https://github.com/Kareadita/Kavita.git
synced 2025-06-14 02:54:16 -04:00
18 lines
522 B
C#
18 lines
522 B
C#
namespace API.DTOs.Account;
|
|
|
|
public class InviteUserResponse
|
|
{
|
|
/// <summary>
|
|
/// Email link used to setup the user account
|
|
/// </summary>
|
|
public string EmailLink { get; set; } = default!;
|
|
/// <summary>
|
|
/// Was an email sent (ie is this server accessible)
|
|
/// </summary>
|
|
public bool EmailSent { get; set; } = default!;
|
|
/// <summary>
|
|
/// When a user has an invalid email and is attempting to perform a flow.
|
|
/// </summary>
|
|
public bool InvalidEmail { get; set; } = false;
|
|
}
|