25 lines
622 B
C#
25 lines
622 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace AyCode.Models.Users
|
|
{
|
|
public abstract class AcChangePasswordDto
|
|
{
|
|
public Guid UserId { get; set; }
|
|
public string OldPassword { get; set; }
|
|
public string NewPassword { get; set; }
|
|
|
|
protected AcChangePasswordDto() { }
|
|
|
|
protected AcChangePasswordDto(Guid userId, string oldPassword, string newPassword) : this()
|
|
{
|
|
UserId = userId;
|
|
OldPassword = oldPassword;
|
|
NewPassword = newPassword;
|
|
}
|
|
}
|
|
}
|