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

import NevisMobileAuthentication

struct PasswordChangerMessage: ChannelOutMessage {
	// MARK: Properties

	let operationId: String
	let context: TypedPasswordChangeContext

	// MARK: Initialization

	init(operationId: String, context: PasswordChangeContext) {
		self.operationId = operationId
		self.context = TypedPasswordChangeContext(wrapped: context,
		                                          operationId: operationId)
	}
}
