2021-06-04 13:22:59 +08:00

28 lines
503 B
C#

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