Song

@Serializable
data class Song(val id: Int, val name: String? = null)

Information about a song unlocked by a character.

Parameters

id

the song's ID

name

an unlocalized name describing the song

Constructors

Link copied to clipboard
constructor(id: Int, name: String? = null)

Properties

Link copied to clipboard
val id: Int

This field holds the song's ID.

Link copied to clipboard
val name: String? = null

This field holds an unlocalized name describing the song.