revanced-patches/src/main/kotlin/app/revanced/patches/shared/settings/IPreference.kt
Tim Schneeberger 5afd49a111 refactor: abstract settings patch away from YouTube (#1103)
Co-authored-by: oSumAtrIX <johan.melkonyan1@web.de>
2022-11-25 00:05:54 +01:00

23 lines
No EOL
384 B
Kotlin

package app.revanced.patches.shared.settings
import app.revanced.patches.shared.settings.impl.StringResource
/**
* Preference
*/
internal interface IPreference {
/**
* Key of the preference.
*/
val key: String
/**
* Title of the preference.
*/
val title: StringResource
/**
* Tag name of the preference.
*/
val tag: String
}