Skip to content

Commit

Permalink
Default constructor
Browse files Browse the repository at this point in the history
  • Loading branch information
zwolsman committed Jun 16, 2018
1 parent 1b05824 commit 1b4d025
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
package com.s63d.tripmiddleware.domain.intern

data class InternTrip (val id: Long, val polyline: String, val vehicleWeight: Int)
data class InternTrip (val id: Long, val polyline: String, val vehicleWeight: Int) {
private constructor() : this(-1, "", -1)
}

0 comments on commit 1b4d025

Please sign in to comment.