Advertisement
Guest User

Untitled

a guest
Aug 21st, 2019
87
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.59 KB | None | 0 0
  1. data class CategoryModel(
  2.  
  3. @SerializedName("id")
  4. val id : Int,
  5.  
  6. @SerializedName("name")
  7. val categoryName : String,
  8.  
  9. var isSelected : Boolean,
  10.  
  11. @SerializedName("image")
  12. val imageUrl : String,
  13.  
  14. var isOpened: Boolean = false,
  15.  
  16. @SerializedName("service")
  17. val services : MutableList<ServiceModel>,
  18.  
  19. var selectedServiceListAdapter: SelectedSeerviceListRecyclerAdapter? = null) : Serializable
  20.  
  21. val localCategoryList: MutableList<CategoryModel> = arrayListOf()
  22.  
  23. val argument = bundleOf("list" to localCategoryList)
  24.  
  25. categoryList = arguments?.get("list") as MutableList<CategoryModel>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement