28 lines
503 B
C#
Raw Normal View History

2021-05-19 14:38:48 +08:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Assets.Scripts.Ble
{
/// <summary>
2021-06-04 10:35:58 +08:00
/// r里的 WinBlePeripheralInfo类
2021-05-19 14:38:48 +08:00
/// </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()
{
}
}
}