19 lines
448 B
C#
19 lines
448 B
C#
using AyCode.Models.Users;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace TIAM.Models.Dtos.Users
|
|
{
|
|
public class ChangePasswordDto : AcChangePasswordDto
|
|
{
|
|
public ChangePasswordDto() : base()
|
|
{ }
|
|
|
|
public ChangePasswordDto(Guid userId, string oldPassword, string newPassword) : base(userId, oldPassword, newPassword)
|
|
{}
|
|
}
|
|
}
|