mirror of
https://github.com/InsanusMokrassar/MicroUtils.git
synced 2024-11-01 14:03:50 +00:00
14 lines
417 B
Kotlin
14 lines
417 B
Kotlin
|
package dev.inmo.microutils.kps.sealed
|
||
|
|
||
|
@Retention(AnnotationRetention.BINARY)
|
||
|
@Target(AnnotationTarget.CLASS)
|
||
|
annotation class GenerateSealedWorkaround(
|
||
|
val prefix: String = ""
|
||
|
) {
|
||
|
@Retention(AnnotationRetention.BINARY)
|
||
|
@Target(AnnotationTarget.CLASS)
|
||
|
annotation class Order(val order: Int)
|
||
|
@Retention(AnnotationRetention.BINARY)
|
||
|
@Target(AnnotationTarget.CLASS)
|
||
|
annotation class Exclude
|
||
|
}
|