Author

interface Author

表示作者信息的接口.

Author

M8Test, [email protected], https://m8test.com

Functions

Link copied to clipboard
abstract fun getEmail(): String

获取邮箱.

Link copied to clipboard
abstract fun getName(): String

获取作者名字.

Link copied to clipboard
abstract fun getProfile(): String

获取简介.

Link copied to clipboard
abstract fun getWebsite(): String

获取网站.

Link copied to clipboard
abstract fun setEmail(email: String)

设置邮箱.

Link copied to clipboard
abstract fun setName(name: String)

设置作者名称.

Link copied to clipboard
abstract fun setProfile(profile: String)

设置简介.

Link copied to clipboard
abstract fun setWebsite(website: String)

设置网站.