TimeRange

@Serializable
data class TimeRange(val start: Int, val end: Int)

時間範囲

Parameters

start

開始時間(0-95) 0: 00:00, 32: 8:00, 64: 16:00, 95: 23:45

end

終了時間(0-95) 0: 00:00, 32: 8:00, 64: 16:00, 95: 23:45

Constructors

Link copied to clipboard
constructor(start: Int, end: Int)

Properties

Link copied to clipboard
val end: Int
Link copied to clipboard
val start: Int