All Downloads are FREE. Search and download functionalities are using the official Maven repository.

net.bjoernpetersen.m3u.model.M3uEntry.kt Maven / Gradle / Ivy

There is a newer version: 1.4.0
Show newest version
package net.bjoernpetersen.m3u.model

import java.time.Duration

/**
 * An entry in a `.m3u` file.
 *
 * @param location the location of the file
 * @param duration the media item's duration, or null
 * @param title the media item's title, or null
 */
data class M3uEntry @JvmOverloads constructor(
    val location: MediaLocation,
    val duration: Duration? = null,
    val title: String? = null
)




© 2015 - 2025 Weber Informatics LLC | Privacy Policy