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!;
}