You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
367 B
17 lines
367 B
package xyz.fycz.myreader.entity
|
|
|
|
/**
|
|
* @author fengyue
|
|
* @date 2022/3/29 14:55
|
|
*/
|
|
data class PluginConfig(
|
|
val name: String,
|
|
val versionCode: Int,
|
|
val version: String,
|
|
val url: String,
|
|
val md5: String,//32位
|
|
val changelog: String
|
|
) {
|
|
constructor(name: String, versionCode: Int) :
|
|
this(name, versionCode, "", "", "", "")
|
|
}
|
|
|