safedispatch-mobile/libSafeMobile/src/main/java/com/safenet/lib/GeofencePointsId.java

22 lines
350 B
Java
Raw Normal View History

2022-03-14 09:53:00 +00:00
package com.safenet.lib;
public class GeofencePointsId {
public int geofencePointsId;
public int latLngPointId;
public int pointsIdx;
public GeofencePointsId(){
}
public String toString()
{
return "geofencePointsId" + geofencePointsId
+ "latLngPointId" + latLngPointId
+ "pointsIdx" + pointsIdx;
}
}