This commit is contained in:
2025-08-14 15:33:38 +03:00
parent a71279d450
commit ecf614e4c2
4 changed files with 46 additions and 20 deletions

View File

@@ -0,0 +1,4 @@
package com.homebox.lens.data.api.dto
class LabelCreateDto {
}

View File

@@ -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]