WX-Game1/Assets/Scripts/Dto/UserInfoResponse.cs

23 lines
463 B
C#
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

/// <summary>
/// 用户信息API响应类
/// 用于解析获取用户信息接口的响应数据
/// </summary>
[System.Serializable]
public class UserInfoResponse
{
/// <summary>
/// 响应状态码0-成功,其他-失败)
/// </summary>
public int code;
/// <summary>
/// 响应消息
/// </summary>
public string msg;
/// <summary>
/// 用户信息数据
/// </summary>
public UserInfo data;
}