I have this simple class:
data class Sample(val id: String, val num: Int, val date: Date)
But, when I’m looking from an annotation processor, the KmClass.properties has them in this order: date, id, num.
perhaps because of sorting, but how do I get the original order?