// Copyright (c) 2024 C Forge. All Rights Reserved.
// SPDX-License-Identifier: MIT
/// Emitted when the contract is paused.
#[ink::event]pubstructPaused{/// The account that initiated the pause action.
#[ink(topic)]pubaccount: AccountId,
}/// Emitted when the contract is unpaused.
#[ink::event]pubstructUnpaused{/// The account that initiated the unpause action.
#[ink(topic)]pubaccount: AccountId,
}