mirror of
https://github.com/rebelonion/Dantotsu.git
synced 2026-01-24 12:11:02 +00:00
10 lines
199 B
Kotlin
10 lines
199 B
Kotlin
package ani.dantotsu.media
|
|
|
|
import java.io.Serializable
|
|
|
|
data class Studio(
|
|
val id: String,
|
|
val name: String,
|
|
var yearMedia: MutableMap<String, ArrayList<Media>>? = null
|
|
) : Serializable
|