mirror of
https://gitlab.com/comunic/comunicapiv3
synced 2025-02-18 15:02:41 +00:00
13 lines
266 B
Rust
13 lines
266 B
Rust
|
//! # Export of all account's data
|
||
|
//!
|
||
|
//! @author Pierre Hubert
|
||
|
|
||
|
use crate::data::comment::Comment;
|
||
|
use crate::data::post::Post;
|
||
|
use crate::data::user::User;
|
||
|
|
||
|
pub struct AccountExport {
|
||
|
pub user: User,
|
||
|
pub posts: Vec<Post>,
|
||
|
pub comments: Vec<Comment>,
|
||
|
}
|