identificationOfCultivatedL.../OpenAuth.App/BaseApp/UserManager/Request/ChangePasswordReq.cs

9 lines
174 B
C#
Raw Normal View History

2026-02-04 10:30:49 +08:00
namespace OpenAuth.App.Request
{
public class ChangePasswordReq
{
public string Account { get; set; }
public string Password { get; set; }
}
}