We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2049ba0 commit dd01451Copy full SHA for dd01451
model-api/src/commonMain/kotlin/org/modelix/model/data/MetaModelData.kt
@@ -43,7 +43,12 @@ data class ConceptData(
43
val references: List<ReferenceLinkData> = emptyList(),
44
val extends: List<String> = emptyList(),
45
override val deprecationMessage: String? = null,
46
-) : IDeprecatable
+ val metaProperties: MutableMap<String, String> = mutableMapOf(),
47
+) : IDeprecatable {
48
+ companion object {
49
+ const val ALIAS_KEY = "alias"
50
+ }
51
+}
52
53
@Serializable
54
data class EnumData(
0 commit comments