mirror of
https://gitlab.com/comunic/comunicapiv3
synced 2025-01-07 03:12:36 +00:00
14 lines
281 B
Rust
14 lines
281 B
Rust
//! # Unread conversation
|
|
//!
|
|
//! @author Pierre Hubert
|
|
|
|
use crate::data::user::UserID;
|
|
|
|
/// Unread conversation information
|
|
pub struct UnreadConversation {
|
|
pub id: u64,
|
|
pub name: Option<String>,
|
|
pub last_active: u64,
|
|
pub user_id: UserID,
|
|
pub message: String,
|
|
} |