mirror of
https://gitee.com/dotnetchina/OpenAuth.Net.git
synced 2025-11-08 18:34:44 +08:00
9 lines
174 B
C#
9 lines
174 B
C#
|
|
namespace OpenAuth.App.Request
|
|||
|
|
{
|
|||
|
|
public class ChangePasswordReq
|
|||
|
|
{
|
|||
|
|
public string Account { get; set; }
|
|||
|
|
public string Password { get; set; }
|
|||
|
|
}
|
|||
|
|
}
|