mirror of
https://gitlab.com/comunic/comunicapiv3
synced 2025-01-10 04:32:28 +00:00
13 lines
287 B
Rust
13 lines
287 B
Rust
|
//! # New conversation message
|
||
|
//!
|
||
|
//! @author Pierre Hubert
|
||
|
|
||
|
use crate::data::user::UserID;
|
||
|
|
||
|
/// Information about a new conversation message
|
||
|
pub struct NewConversationMessage {
|
||
|
pub user_id: UserID,
|
||
|
pub conv_id: u64,
|
||
|
pub message: String,
|
||
|
pub image_path: Option<String>
|
||
|
}
|