using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Assets.Scripts.Ble
{
///
/// r里的 WinBlePeripheralInfo类
///
public class BleDeviceProxy
{
public string Address { get; set; }
public string Name { get; set; }
public int Rssi { get; set; }
public List Services { get; set; }
public BleDeviceProxy()
{
}
}
}