package com.example.androidapp.routing /** * The result of an isochrone weather routing computation. * * @param path Ordered list of [RoutePoint]s from the start to the destination. * @param etaMs Estimated Time of Arrival as a UNIX timestamp in milliseconds. */ data class IsochroneResult( val path: List, val etaMs: Long )