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

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