TimeOfDay

data class TimeOfDay(val hour: Int, val minute: Int)

Represents a time of day with hour and minute components.

Constructors

Link copied to clipboard
constructor(hour: Int, minute: Int)

Properties

Link copied to clipboard
val hour: Int

The hour component of the time, in 24-hour format (0-23).

Link copied to clipboard
val minute: Int

The minute component of the time (0-59).