1 2 3 4 5 6 7 8 9
use serde::{Deserialize, Serialize}; use crate::account::Account; #[derive(Debug, Serialize, Deserialize, Clone)] pub struct Accounts { pub account: Option<Account>, pub accounts: Option<Vec<Account>>, }