aboutsummaryrefslogtreecommitdiff
path: root/gradle-plugin/src/main/kotlin/moe/nea/mcautotranslations/gradle/MCAutoTranslationsExtension.kt
blob: 726145e0bba4ade3eaf6a66db438347d74c10693 (plain)
1
2
3
4
5
6
7
8
package moe.nea.mcautotranslations.gradle

import org.gradle.api.provider.Property

abstract class MCAutoTranslationsExtension {
	abstract val translationFunction: Property<String>
	abstract val translationFunctionResolved: Property<String>
}