show laps in a recyclerview

This commit is contained in:
tibbi
2018-03-08 11:44:11 +01:00
parent af91f217ef
commit 2a77bce55f
7 changed files with 141 additions and 9 deletions

View File

@ -0,0 +1,3 @@
package com.simplemobiletools.clock.models
data class Lap(val id: Int, var lapTime: Long, var totalTime: Long)

View File

@ -1,3 +0,0 @@
package com.simplemobiletools.clock.models
data class StopwatchTime(val id: Int, var lapTime: Long, var totalTime: Long)