22 lines
390 B
C#
22 lines
390 B
C#
|
|
namespace YLErp.Modules.ApiTestModule
|
|
{
|
|
class ErrorRsp
|
|
{
|
|
public int errcode { get; set; }
|
|
|
|
public string errmsg { get; set; }
|
|
}
|
|
|
|
class TokenRsp : ErrorRsp
|
|
{
|
|
public string tokenType { get; set; }
|
|
|
|
public string accessToken { get; set; }
|
|
|
|
public int expiresIn { get; set; }
|
|
|
|
public string userName { get; set; }
|
|
}
|
|
}
|