Skip to content

Commit 1fa11c6

Browse files
committed
Additional fix for bug #44, as well as test code.
1 parent 9e72a42 commit 1fa11c6

File tree

1 file changed

+7
-0
lines changed
  • serialization/src/commonTest/kotlin/nl/adaptivity/xml/serialization

1 file changed

+7
-0
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
2+
@XmlSerialName("StringWithMarkup", "http://pubchem.ncbi.nlm.nih.gov/pug_view", "")
3+
@Serializable
4+
data class StringWithMarkup(
5+
@XmlElement(true) @SerialName("String") val string: String = "",
6+
val markup: List<String> = emptyList()
7+
)

0 commit comments

Comments
 (0)