Advertisement
Guest User

Untitled

a guest
Feb 14th, 2018
109
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.46 KB | None | 0 0
  1. package com.lignt.domain.api.models.foodtruck
  2.  
  3. import com.google.gson.annotations.SerializedName
  4. import com.lignt.domain.utils.emptyString
  5. import java.io.Serializable
  6.  
  7. data class LocationResponseModel(
  8.  
  9. @SerializedName("locationName")
  10. var locationName: String = emptyString,
  11.  
  12. @SerializedName("latitude")
  13. var latitude: Double = 0.0,
  14.  
  15. @SerializedName("longitude")
  16. var longitude: Double = 0.0
  17.  
  18. ) : Serializable
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement