You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

14 lines
365 B
Kotlin

package moe.odango.index.es.dto
import moe.odango.index.scraper.mal.AnimePageScraper
import java.util.*
data class AnimeDTO(
val id: UUID,
val title: Collection<AnimeTitleDTO>,
val description: Collection<AnimeDescriptionDTO>,
val genre: Collection<String>,
val premiered: AnimePageScraper.Premiered?,
val aired: AnimePageScraper.Aired?
)