OpenAuth.Net/OpenAuth.App/UserManager/Request/ChangePasswordReq.cs

9 lines
174 B
C#
Raw Normal View History

namespace OpenAuth.App.Request
{
public class ChangePasswordReq
{
public string Account { get; set; }
public string Password { get; set; }
}
}