InventoryItem.kt 301 B

1234567891011121314
  1. package com.example.pda.model
  2. import com.google.gson.annotations.SerializedName
  3. data class InventoryItem(
  4. @SerializedName("goods_code")
  5. val normalizedResult: String,
  6. @SerializedName("goods_group")
  7. val occurrences: Int,
  8. @SerializedName("goods_qty")
  9. val specification: Int
  10. )