using System.Collections; using System.Collections.Generic; using UnityEngine; namespace TFramework { public class NetReulst : IReference { /// /// 返回码 /// public int code; /// /// 返回数据 /// public T data; /// /// 出错消息 /// public string message; public void Reset() { } } }