//
// Copyright © 2024 Nevis Security AG. All rights reserved.
//

import NevisMobileAuthentication

struct DeviceInformationSyncResultMessage: OnResultMessage {
	// MARK: Properties

	let operationId: String
	let result: TypedDeviceInformationSyncResult

	init(operationId: String, result: DeviceInformationSyncResult) {
		self.operationId = operationId
		self.result = TypedDeviceInformationSyncResult(wrapped: result)
	}
}
