12 lines
354 B
C#
12 lines
354 B
C#
namespace Shop.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; }
|
|
}
|
|
} |