Date

data class Date(val day: Int?, val month: Int?, val year: Int?)

Represents a date with month and year.

Constructors

Link copied to clipboard
constructor(day: Int?, month: Int?, year: Int?)

Properties

Link copied to clipboard
val day: Int?

The day of the date.

Link copied to clipboard
val month: Int?

The month of the date.

Link copied to clipboard
val year: Int?

The year of the date.