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

7 lines
240 B
Kotlin
Raw Normal View History

2023-06-07 15:37:53 +03:00
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"
}