mirror of
https://gitlab.com/2009scape/rt4-client.git
synced 2025-12-17 12:00:19 -07:00
remote fetch
This commit is contained in:
parent
973149e859
commit
905393d2be
5 changed files with 257 additions and 14 deletions
|
|
@ -0,0 +1,15 @@
|
|||
package KondoKit.components.ReflectiveEditorComponents
|
||||
|
||||
/**
|
||||
* Data class representing a plugin with its installation status and update information
|
||||
*/
|
||||
data class PluginStatus(
|
||||
val name: String,
|
||||
val installedVersion: String?,
|
||||
val remoteVersion: String?,
|
||||
val description: String?,
|
||||
val author: String?,
|
||||
val gitLabPlugin: GitLabPlugin?,
|
||||
val isInstalled: Boolean,
|
||||
val needsUpdate: Boolean
|
||||
)
|
||||
Loading…
Add table
Add a link
Reference in a new issue