2023-12-11 09:55:12 +08:00
|
|
|
|
namespace Yi.Framework.Rbac.Application.Contracts.Dtos.Account
|
2023-04-13 21:12:06 +08:00
|
|
|
|
{
|
|
|
|
|
|
public class UpdatePasswordDto
|
|
|
|
|
|
{
|
|
|
|
|
|
public string NewPassword { get; set; } = string.Empty;
|
|
|
|
|
|
public string OldPassword { get; set; } = string.Empty;
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|