mirror of
https://gitee.com/dotnetchina/OpenAuth.Net.git
synced 2025-07-15 05:13:25 +08:00
30 lines
731 B
C#
30 lines
731 B
C#
using System;
|
|
|
|
namespace OpenAuth.App.SSO
|
|
{
|
|
|
|
public class PassportLoginRequest
|
|
{
|
|
public string Account { get; set; }
|
|
|
|
public string Password { get; set; }
|
|
|
|
public string AppKey { get; set; }
|
|
|
|
public void Trim()
|
|
{
|
|
if (string.IsNullOrEmpty(Account))
|
|
{
|
|
throw new Exception("用户名不能为空");
|
|
}
|
|
|
|
if (string.IsNullOrEmpty(Password))
|
|
{
|
|
throw new Exception("密码不能为空");
|
|
}
|
|
Account = Account.Trim();
|
|
Password = Password.Trim();
|
|
if(!string.IsNullOrEmpty(AppKey)) AppKey = AppKey.Trim();
|
|
}
|
|
}
|
|
} |