package art.servers.gost.access.types.neural;
|
|
import com.fasterxml.jackson.annotation.JsonProperty;
|
|
|
|
|
public class NeuralStatusLanes
|
{
|
@JsonProperty("Last detection (1)")
|
public NeuralStatusLane lastDetection1 = null;
|
|
@JsonProperty("Last detection (2)")
|
public NeuralStatusLane lastDetection2 = null;
|
|
|
}
|