using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace GpsCardGatewayPosition.Model.Context
{
public class DeviceStatus : ContextBase
{
///
/// GSM 信号
///
public int? Singal { get; set; }
///
/// 卫星个数
///
public int? Satellite { get; set; }
///
/// 电池电量
///
public int? Battery { get; set; }
///
/// 计步步数
///
public int? Step { get; set; }
///
/// IMSI
///
public string Imsi { get; set; }
///
/// online
///
public int? Online { get; set; }
}
}