Files
spring-boot-rest/kotlin/src/main/kotlin/com/baeldung/dataclass/Movie.kt
cleversonzanon f3c99a7fcf BAEL-974 - Cleverson Santos | cleverson.ssantos1008@gmail.com (#2213)
* Different Types of Bean Injection in Spring code

* Dataclasses in Kotlin

* Revert "Different Types of Bean Injection in Spring code"

This reverts commit 4b747726b9.
2017-07-07 08:37:08 +02:00

3 lines
105 B
Kotlin

package com.baeldung.dataclass
data class Movie(val name: String, val studio: String, var rating: Float)