mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2025-02-24 22:58:28 +01:00
30 lines
658 B
C#
30 lines
658 B
C#
|
namespace BTCPayServer.Client.Models;
|
||
|
|
||
|
public class UpdateApplicationUserRequest
|
||
|
{
|
||
|
/// <summary>
|
||
|
/// the name of the user
|
||
|
/// </summary>
|
||
|
public string Name { get; set; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// the image url of the user
|
||
|
/// </summary>
|
||
|
public string ImageUrl { get; set; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// the email AND username of the user
|
||
|
/// </summary>
|
||
|
public string Email { get; set; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// current password of the user
|
||
|
/// </summary>
|
||
|
public string CurrentPassword { get; set; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// new password of the user
|
||
|
/// </summary>
|
||
|
public string NewPassword { get; set; }
|
||
|
}
|