namespace API.DTOs.Account;
public class InviteUserResponse
{
///
/// Email link used to setup the user account
///
public string EmailLink { get; set; } = default!;
///
/// Was an email sent (ie is this server accessible)
///
public bool EmailSent { get; set; } = default!;
///
/// When a user has an invalid email and is attempting to perform a flow.
///
public bool InvalidEmail { get; set; } = false;
}