Author

@Serializable
data class Author(val name: String, val image: String? = null, val socialLink: String? = null)(source)

Represents an author entity with associated information such as name, github link, discords, and more.

Constructors

Link copied to clipboard
constructor(name: String, image: String? = null, socialLink: String? = null)

Properties

Link copied to clipboard
val image: String? = null

The optional image URL associated with the author's profile.

Link copied to clipboard

The name of the author.

Link copied to clipboard
val socialLink: String? = null

The optional social link associated with the author's profile.