using System.Collections; using System.Collections.Generic; using UnityEngine; using LitJson; namespace JXSoft { public class BluetoothGateway:IResponse { /// /// /// public int v { get; set; } /// /// /// public int mid { get; set; } /// /// /// public int time { get; set; } /// /// 用时 /// public string ip { get; set; } /// /// 地址 /// public string mac { get; set; } /// /// 设备信息 /// public List> devices { get; set; } public string toProtocolData() { return ""; } public bool trySetData(string protocolData) { throw new System.NotImplementedException(); } public string getException() { throw new System.NotImplementedException(); } } }