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.

15 lines
422 B

4 years ago
3 years ago
  1. //
  2. // NewUserRegisterModuleInterface.swift
  3. // GME Remit
  4. //
  5. // Created by Shiran on 8/4/20.
  6. //Copyright © 2020 Gobal Money Express Co. Ltd. All rights reserved.
  7. //
  8. protocol NewUserRegisterModuleInterface: class {
  9. func registerUser(model: NewUserRegisterModel)
  10. func showKyc()
  11. func userLogin()
  12. func checkOtp(otp: String, userId: String, model: NewUserRegisterModel)
  13. func requestOtp(userId: String)
  14. }