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.
 
 
 
 

16 lines
410 B

//
// DetailNotificationInteractorIO.swift
// GME Remit
//
// Created by InKwon James Kim on 2020/02/11.
//Copyright © 2020 Gobal Money Express Co. Ltd. All rights reserved.
//
protocol DetailNotificationInteractorInput: class {
func fetchDetail(_ index: String)
}
protocol DetailNotificationInteractorOutput: class {
func setModel(with model: DetailNoticeModel)
func setError(with error: Error)
}