1
0
mirror of https://gitlab.com/comunic/comunicapiv3 synced 2025-02-18 15:02:41 +00:00
comunicapiv3/src/data/account_export.rs

13 lines
266 B
Rust
Raw Normal View History

2020-07-13 19:12:39 +02:00
//! # 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>,
}