dorset-backend-2/Shop/DTO/UpdateModel.cs

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; }
}
}