Skip to content

ChangePassword

Namespace: Rest_API.Models

Represents a request to change a user's password.

public class ChangePassword

Inheritance ObjectChangePassword

Properties

CurrentPassword

Gets or sets the current password of the user.

public string CurrentPassword { get; set; }

Property Value

String

NewPassword

Gets or sets the new password to be set for the user.

public string NewPassword { get; set; }

Property Value

String

UserId

Gets or sets the unique identifier of the user whose password is to be changed.

public string UserId { get; set; }

Property Value

String

Constructors

ChangePassword()

public ChangePassword()