电子围栏推送服务
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.

24 line
521B

  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. namespace TelpoPush.Fence.Worker.Models.Fence
  5. {
  6. public class GpsPoint
  7. {
  8. public decimal Lat { get; set; }
  9. public decimal Lng { get; set; }
  10. public GpsPoint(decimal lat, decimal lng)
  11. {
  12. Lat = lat;
  13. Lng = lng;
  14. }
  15. public bool Equals(GpsPoint obj)
  16. {
  17. return Math.Abs(obj.Lat - Lat) < 0.000000001m && Math.Abs(obj.Lng - Lng) < 0.000000001m;
  18. }
  19. }
  20. }