Advertisement
Guest User

Untitled

a guest
Jan 8th, 2017
102
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.36 KB | None | 0 0
  1. import Foundation
  2.  
  3. public enum AlamofireRouter: AlamofireRouterProtocol {
  4.  
  5. // Login
  6.  
  7. case login(email: String, password: String)
  8. case forgotPassword(username: String, referenceID: String)
  9. case register(email: String, password: String, userInfo: UserInfo)
  10.  
  11. // Logout
  12.  
  13. case logout()
  14.  
  15. // Profile
  16.  
  17. case getUserProfile()
  18. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement