Labels
This commit is contained in:
@@ -0,0 +1,4 @@
|
||||
package com.homebox.lens.data.api.dto
|
||||
|
||||
class LabelCreateDto {
|
||||
}
|
||||
@@ -1,20 +0,0 @@
|
||||
// [PACKAGE] com.homebox.lens.data.api.dto
|
||||
// [FILE] LabelDto.kt
|
||||
|
||||
package com.homebox.lens.data.api.dto
|
||||
|
||||
import com.squareup.moshi.Json
|
||||
import com.squareup.moshi.JsonClass
|
||||
|
||||
// [CONTRACT]
|
||||
/**
|
||||
* [ENTITY: DataClass('LabelOut')]
|
||||
* [PURPOSE] DTO для информации о метке.
|
||||
*/
|
||||
@JsonClass(generateAdapter = true)
|
||||
data class LabelOut(
|
||||
@Json(name = "id") val id: String,
|
||||
@Json(name = "name") val name: String
|
||||
)
|
||||
|
||||
// [END_FILE_LabelDto.kt]
|
||||
Reference in New Issue
Block a user