1
0
mirror of https://gitlab.com/comunic/comunicapiv3 synced 2025-01-10 04:32:28 +00:00
comunicapiv3/src/data/new_conversation_message.rs

13 lines
287 B
Rust
Raw Normal View History

2020-06-22 10:19:13 +00:00
//! # 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>
}