You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

24 lines
533 B

6 years ago
  1. //
  2. // SocialWall.swift
  3. // GMERemittance
  4. //
  5. // Created by Sujal on 4/3/18.
  6. // Copyright © 2018 Gobal Money Express Co. Ltd. All rights reserved.
  7. //
  8. import Foundation
  9. enum socialWallCode: Int {
  10. case error = 0
  11. case fetchPostsPublic = 1
  12. case deletePost = 2
  13. case createUpdatePost = 3
  14. case likeUnlikePost = 4
  15. case fetchLikes = 5
  16. case fetchComments = 6
  17. case createUpdateComment = 7
  18. case deleteComment = 8
  19. case reportPost = 9
  20. case fetchParticularPost = 10
  21. case fetchPostsPrivate = 11
  22. }