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.

21 lines
474 B

4 years ago
  1. //
  2. // NotificationHistoryService.swift
  3. // GME Remit
  4. //
  5. // Created by InKwon James Kim on 2020/02/11.
  6. //Copyright © 2020 Gobal Money Express Co. Ltd. All rights reserved.
  7. //
  8. import Foundation
  9. class NotificationHistoryService: NotificationHistoryServiceType {
  10. func fetchNotices(
  11. success: @escaping ([NoticeModel]) -> Void,
  12. failure: @escaping (Error) -> Void
  13. ) {
  14. APIRouter
  15. .getNotifyInfo
  16. .json(success: success, failure: failure)
  17. }
  18. }