mobile/src/main/kotlin/data/model/CategoryDTO.kt

6 lines
111 B
Kotlin
Raw Normal View History

2025-01-28 08:19:34 +00:00
package org.example.data.model
data class CategoryDTO(
2025-02-03 13:02:46 +00:00
val categoryId: Int,
var categoryName: String
2025-01-28 08:19:34 +00:00
)