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

import NevisMobileAuthentication

struct PinEnrollerMessage: ChannelOutMessage {
	// MARK: Properties

	let operationId: String
	let context: TypedPinEnrollmentContext

	// MARK: Initialization

	init(operationId: String, context: PinEnrollmentContext) {
		self.operationId = operationId
		self.context = TypedPinEnrollmentContext(wrapped: context,
		                                         operationId: operationId)
	}
}
