Files
zszq-trs/Tools/YLTestTool/Modules/ApiTestModule/Models.cs
T
2024-05-09 14:06:26 +08:00

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; }
}
}