session-ios/SessionMessagingKit/Sending & Receiving/Notifications/Models/PushServerResponse.swift
Morgan Pretty 5f1039b39e Updated the PushNotificationAPI to use V4 onion requests instead of V2
Fixed a crash which could occur when handling 'loadMedia' edge cases in the MediaView (was running on non-main thread)
2022-08-03 09:10:20 +10:00

11 lines
214 B
Swift

// Copyright © 2022 Rangeproof Pty Ltd. All rights reserved.
import Foundation
extension PushNotificationAPI {
struct PushServerResponse: Codable {
let code: Int
let message: String?
}
}