package nl.kallestruik.dlib.config.annotations import kotlinx.serialization.SerialInfo @SerialInfo @Repeatable @Target(AnnotationTarget.FIELD, AnnotationTarget.PROPERTY) @Retention(AnnotationRetention.BINARY) annotation class AllowedKeys( vararg val keys: String, )