diff --git a/mirai-core-utils/src/commonMain/kotlin/Annotations.kt b/mirai-core-utils/src/commonMain/kotlin/Annotations.kt index b64acdc9b..6d1330bd6 100644 --- a/mirai-core-utils/src/commonMain/kotlin/Annotations.kt +++ b/mirai-core-utils/src/commonMain/kotlin/Annotations.kt @@ -15,4 +15,13 @@ import kotlin.annotation.AnnotationTarget.* @RequiresOptIn("This can only be used in tests.", level = ERROR) @Target(CLASS, FUNCTION, PROPERTY, CLASS, CONSTRUCTOR, FUNCTION) -public annotation class TestOnly \ No newline at end of file +public annotation class TestOnly + +/** + * @since 2.9.0-RC + */ // https://github.com/mamoe/mirai/issues/1669 +public annotation class DeprecatedSinceMirai( + val warningSince: String = "", + val errorSince: String = "", + val hiddenSince: String = "" +) \ No newline at end of file