11 lines
415 B
Swift
11 lines
415 B
Swift
|
class RemoteNotificationsOperation: AsyncOperation {
|
||
|
let apiController: RemoteNotificationsAPIController
|
||
|
let modelController: RemoteNotificationsModelController
|
||
|
|
||
|
required init(apiController: RemoteNotificationsAPIController, modelController: RemoteNotificationsModelController) {
|
||
|
self.apiController = apiController
|
||
|
self.modelController = modelController
|
||
|
super.init()
|
||
|
}
|
||
|
}
|