namespace BTCPayServer.Client.Models;
public class UpdateApplicationUserRequest
{
///
/// the name of the user
///
public string Name { get; set; }
///
/// the image url of the user
///
public string ImageUrl { get; set; }
///
/// the email AND username of the user
///
public string Email { get; set; }
///
/// current password of the user
///
public string CurrentPassword { get; set; }
///
/// new password of the user
///
public string NewPassword { get; set; }
}