SocketMessageDataModel.kt 298 B

123456789101112131415
  1. package com.sambath.rat_main.remote
  2. import org.json.JSONArray
  3. data class SocketMessageDataModel(
  4. val type: String,
  5. val countDown: Int?= null,
  6. val resultArray: JSONArray? = null,
  7. val totalValue: Int?= null
  8. ){
  9. fun isCountDowning() = countDown != null && resultArray == null
  10. }