OOP_IO-2x_2023-mirror/Java/lab_6/ElectroPop.kt

7 lines
240 B
Kotlin

package OOP.Java.lab_6
import kotlin.time.Duration
class ElectroPop(numberInAlbum: Int, trackName: String, feature: String?, duration: Duration): Track(numberInAlbum, trackName, feature, duration) {
override val style = "Electropop"
}