Created
September 10, 2023 09:48
-
-
Save Rohit-554/4d054198ba483466d41388de8b68bc8f to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import org.simpleframework.xml.Element | |
| import org.simpleframework.xml.ElementList | |
| import org.simpleframework.xml.Root | |
| @Root(name = "list") | |
| data class languageDto( | |
| @field:ElementList(entry = "item", inline = true) | |
| var items: List<ItemData> = mutableListOf() | |
| ) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment