7 lines
238 B
Kotlin
7 lines
238 B
Kotlin
|
package OOP.Java.lab_6
|
||
|
|
||
|
import kotlin.time.Duration
|
||
|
|
||
|
class Interlude(numberInAlbum: Int, trackName: String, feature: String?, duration: Duration): Track(numberInAlbum, trackName, feature, duration) {
|
||
|
override val style = "Interlude"
|
||
|
}
|