You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
367 B
16 lines
367 B
using GpsModels;
|
|
|
|
namespace GPSBusiness.GPSStandard
|
|
{
|
|
public class GPSResponseData
|
|
{
|
|
/// <summary>
|
|
/// 返回设备数数据,部标才会有
|
|
/// </summary>
|
|
public byte[] ReturnData { get; set; }
|
|
/// <summary>
|
|
/// 车辆gps信息
|
|
/// </summary>
|
|
public GpsModel GpsInfo { get; set; }
|
|
}
|
|
}
|
|
|