Skip to content

Commit dd01451

Browse files
committed
feat(model-api): meta properties for ConceptData
1 parent 2049ba0 commit dd01451

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

model-api/src/commonMain/kotlin/org/modelix/model/data/MetaModelData.kt

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,12 @@ data class ConceptData(
4343
val references: List<ReferenceLinkData> = emptyList(),
4444
val extends: List<String> = emptyList(),
4545
override val deprecationMessage: String? = null,
46-
) : IDeprecatable
46+
val metaProperties: MutableMap<String, String> = mutableMapOf(),
47+
) : IDeprecatable {
48+
companion object {
49+
const val ALIAS_KEY = "alias"
50+
}
51+
}
4752

4853
@Serializable
4954
data class EnumData(

0 commit comments

Comments
 (0)