gradle/src/main/kotlin/com/lagradost/cloudstream3/gradle/entities/PluginManifest.kt

7 lines
157 B
Kotlin
Raw Normal View History

2022-08-04 11:30:09 +00:00
package com.lagradost.cloudstream3.gradle.entities
data class PluginManifest(
2022-08-08 07:40:35 +00:00
val pluginClassName: String?,
2022-08-06 16:47:25 +00:00
val name: String,
2022-08-09 15:12:04 +00:00
val version: Int
2022-08-04 11:30:09 +00:00
)