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
452 B

  1. //
  2. // BeneficiaryDetailModuleInterface.swift
  3. // GME Remit
  4. //
  5. // Created by Manish Adhikari on 24/03/2023.
  6. //Copyright © 2023 Gobal Money Express Co. Ltd. All rights reserved.
  7. //
  8. protocol BeneficiaryDetailModuleInterface: AnyObject {
  9. func makeApiRequest()
  10. func didPressBack()
  11. func gotoSendMoney(_ reciptent: Recipient?,
  12. _ paymentMethod: PaymentMethodModel?)
  13. func openEditRecipient(who recipient: Recipient)
  14. }