pass_manager/src/models.rs

10 lines
200 B
Rust
Raw Normal View History

2023-05-15 16:09:15 +00:00
//! Models to export and import the accounts
use crate::prelude::*;
#[derive(serde::Serialize, serde::Deserialize)]
2023-06-11 12:58:41 +00:00
#[repr(transparent)]
pub struct User {
pub accounts: Vec<DecryptedAccount>,
}