// SPDX-FileCopyrightText: OpenTalk GmbH <mail@opentalk.eu>
//// SPDX-License-Identifier: EUPL-1.2
useserde::{Deserialize, Serialize};usecrate::AccountTokens;/// A wrapper around the [`AccountData`] for defining the data storage file format.
#[derive(Debug, Clone, PartialEq, Eq, Deserialize, Serialize)]pub(crate)structAccountDataFile{/// The account token data.
pubopentalk_account_tokens: AccountTokens,
}