16 lines
No EOL
234 B
Kotlin
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
|
|
} |