Series

@Serializable
data class Series(val name: String, val volume: Int, val yearBegan: Int)

A class representing a basic series with name, volume and year began.

Constructors

Link copied to clipboard
constructor(name: String, volume: Int, yearBegan: Int)

Properties

Link copied to clipboard

The name of the series.

Link copied to clipboard
val volume: Int

The volume of the series.

Link copied to clipboard

The year the series began.