23 lines
No EOL
384 B
Kotlin
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
|
|
} |