mirror of
https://github.com/ASDjonok/OOP_IO-2x_2023.git
synced 2025-07-12 02:59:24 +03:00
7 lines
237 B
Kotlin
7 lines
237 B
Kotlin
|
package OOP.Java.lab_6
|
||
|
|
||
|
import kotlin.time.Duration
|
||
|
|
||
|
class SynthPop(numberInAlbum: Int, trackName: String, feature: String?, duration: Duration): Track(numberInAlbum, trackName, feature, duration) {
|
||
|
override val style = "Synth-pop"
|
||
|
}
|