> ## Documentation Index
> Fetch the complete documentation index at: https://kotly-doc.voxray.su/llms.txt
> Use this file to discover all available pages before exploring further.

# PluginConfig

Дата-класс `PluginConfig` содержит в себе конфигурацию плагина.

```kotlin theme={null}
package kotly.plugin
data class PluginConfig (
    val name: String,
    val description: String?,
    val author: String,
    val version: String,
    val depends: List<String>
)
```
