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

25 lines
448 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.

using System;
/// <summary>
/// 添加好友响应类
/// 用于处理添加好友API的响应数据
/// </summary>
[System.Serializable]
public class AddFriendResponse
{
/// <summary>
/// 响应状态码
/// </summary>
public int code;
/// <summary>
/// 响应消息
/// </summary>
public string msg;
/// <summary>
/// 响应数据通常为null
/// </summary>
public object data;
}