namespace API.DTOs.Account;
public class InviteUserResponse
{
///
/// Email link used to setup the user account
///
public string EmailLink { get; set; }
///
/// Was an email sent (ie is this server accessible)
///
public bool EmailSent { get; set; }
}