Guest User

Untitled

a guest
Feb 23rd, 2018
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.35 KB | None | 0 0
  1. class PoiItemCollection {
  2. var success: Bool
  3. var data: [PoiListItem]
  4. init(success:Bool,data:[PoiListItem]) {
  5. self.success = success
  6. self.data = data
  7. }
  8. }
  9.  
  10. class PoiListItem {
  11. var poiId:String
  12. var poiName:String
  13. //...
  14. init(poiId:String,poiName:String) {
  15. self.poiId = poiId
  16. self.poiName = poiName
  17. }
  18. }
Add Comment
Please, Sign In to add comment