safedispatch-mobile/libSafeMobile/src/main/java/com/safenet/lib/GeofencePointsId.java
2022-03-14 11:53:00 +02:00

22 lines
350 B
Java

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;
}
}