31 lines
634 B
C#

using System;
namespace Assets.Scripts.Apis.Models
{
public class DeviceDetail
{
public int Id { get; set; }
public string Name { get; set; }
public int? AntManufacturerId { get; set; }
public int? AntModelId { get; set; }
public string AdvertisingData { get; set; }
public bool SupportsBluetooth { get; set; }
public bool SupportsAnt { get; set; }
//public SensorType SensorType { get; set; }
public int? PairingHelpId { get; set; }
public int? BestPracticesId { get; set; }
public DateTime Updated { get; set; }
}
}