aboutsummaryrefslogtreecommitdiffstats
path: root/lib/way_cost.rb
blob: d088b3483c796afbb4cebbb96cd3ea179e7d87ac (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
class WayCost
  def initialize(
    departure:,
    arrival:,
    distance:,
    time:,
    id:,
  )
    @departure = departure
    @arrival = arrival
    @distance = distance
    @time = time
    @id = id
  end
end