Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.

21 lines
561B

  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. namespace GpsCardGatewayPosition.Service.Resolver.Property.Dto
  7. {
  8. public class GpsInfoModel
  9. {
  10. public decimal Longitude { get; set; }
  11. public decimal Latitude { get; set; }
  12. public decimal Altitude { get; set; }
  13. public int CoordinateSystem { get; set; }
  14. public string IDNumber { get; set; } = "";
  15. //0 无事件 1 SOS事件 2 Pay事件
  16. public int IDType { get; set; } = 0;
  17. }
  18. }