mirror of
https://gitlab.com/comunic/comunicapiv3
synced 2025-01-09 20:22:27 +00:00
14 lines
300 B
Rust
14 lines
300 B
Rust
//! # New conversation information
|
|
//!
|
|
//! @author Pierre Huber
|
|
|
|
use crate::data::user::UserID;
|
|
|
|
#[derive(Debug)]
|
|
pub struct NewConversation {
|
|
pub owner_id: UserID,
|
|
pub name: Option<String>,
|
|
pub owner_following: bool,
|
|
pub members: Vec<UserID>,
|
|
pub can_everyone_add_members: bool
|
|
} |