open class Modpack
A definition of a modpack, excluding versions for serialisation
Modpack(id: String, logo: String? = null, links: Links = Links(), name: String, description: String = "", authors: List<Author> = listOf())
A definition of a modpack, excluding versions for serialisation |
val authors: List<Author>
Authors of this modpack |
|
val description: String
Description of this modpack |
|
val id: String
Id of this modpack, should be author-handle/modpack-name |
|
val links: Links
Links related to modpack |
|
val logo: String?
URL to logo of this modpack |
|
val name: String
Display name of this modpack |
open fun withoutVersions(): Modpack |
class ModpackWithVersions : Modpack
Modpack with versions, used in repository |