forked from tom.biard/ScienceQuest
parent
feeae3874d
commit
eb3c3fbe70
@ -0,0 +1,14 @@
|
||||
package fr.iut.sciencequest.model.dto.ScientifiqueDTOs
|
||||
|
||||
import kotlinx.serialization.SerialName
|
||||
import kotlinx.serialization.Serializable
|
||||
|
||||
@Serializable
|
||||
open class ScientifiqueListDTO {
|
||||
@SerialName("_embedded")
|
||||
val scientifiques: List<ScientifiqueDTO>
|
||||
|
||||
constructor(scientifiques: List<ScientifiqueDTO>) {
|
||||
this.scientifiques = scientifiques
|
||||
}
|
||||
}
|
Loading…
Reference in new issue