mirror of
https://gitee.com/ccnetcore/Yi
synced 2026-03-05 01:00:51 +08:00
9 lines
245 B
C#
9 lines
245 B
C#
namespace Yi.Framework.Rbac.Application.Contracts.Dtos.Account
|
|
{
|
|
public class UpdatePasswordDto
|
|
{
|
|
public string NewPassword { get; set; } = string.Empty;
|
|
public string OldPassword { get; set; } = string.Empty;
|
|
}
|
|
}
|