12 lines
352 B
C#
12 lines
352 B
C#
namespace DTO
|
|
{
|
|
public class UpdateModel
|
|
{
|
|
public string FirstName { get; set; }
|
|
public string LastName { get; set; }
|
|
public string Username { get; set; }
|
|
public string CurrentPassword { get; set; }
|
|
public string NewPassword { get; set; }
|
|
public string ConfirmNewPassword { get; set; }
|
|
}
|
|
} |