Media: some code clean-up

This commit is contained in:
ganfra 2023-05-24 22:23:38 +02:00
parent 92e19c3dd9
commit 3e01a2f317
7 changed files with 18 additions and 16 deletions

View file

@ -22,11 +22,11 @@ import kotlinx.parcelize.Parcelize
@Parcelize
data class MediaSource(
/**
* Url of the media
* Url of the media.
*/
val url: String,
/**
* This is used to hold data for encrypted media
* This is used to hold data for encrypted media.
*/
val json: String? = null,
) : Parcelable