File tree Expand file tree Collapse file tree
src/main/java/com/threegap/bitnagil/domain/report/model Expand file tree Collapse file tree Original file line number Diff line number Diff line change 11plugins {
22 alias(libs.plugins.bitnagil.kotlin)
3+ alias(libs.plugins.kotlin.serialization)
34}
45
56dependencies {
7+ implementation(libs.kotlinx.serialization.json)
68 implementation(libs.kotlinx.coroutines.core)
79 implementation(libs.javax.inject)
810 testImplementation(libs.junit)
Original file line number Diff line number Diff line change 11package com.threegap.bitnagil.domain.report.model
22
3+ import kotlinx.serialization.Serializable
4+
5+ @Serializable
36enum class ReportCategory {
47 TRANSPORTATION ,
58 LIGHTING ,
Original file line number Diff line number Diff line change 11package com.threegap.bitnagil.domain.report.model
22
3+ import kotlinx.serialization.Serializable
4+
5+ @Serializable
36enum class ReportStatus {
47 PENDING ,
58 IN_PROGRESS ,
You can’t perform that action at this time.
0 commit comments