15 lines
620 B
Swift
15 lines
620 B
Swift
import Foundation
|
|
|
|
class RemoteNotificationsProjectOperation: RemoteNotificationsOperation {
|
|
let project: WikimediaProject
|
|
|
|
required init(project: WikimediaProject, apiController: RemoteNotificationsAPIController, modelController: RemoteNotificationsModelController) {
|
|
self.project = project
|
|
super.init(apiController: apiController, modelController: modelController)
|
|
}
|
|
|
|
required init(apiController: RemoteNotificationsAPIController, modelController: RemoteNotificationsModelController) {
|
|
fatalError("init(apiController:modelController:) has not been implemented")
|
|
}
|
|
}
|