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

16 lines
No EOL
234 B
Kotlin

package app.revanced.patches.shared.settings
/**
* Resource
*/
internal interface IResource {
/**
* Name of the resource.
*/
val name: String
/**
* Tag name of the resource.
*/
val tag: String
}