mirror of
https://gitlab.com/comunic/comunicapiv3
synced 2025-01-09 12:12:27 +00:00
14 lines
297 B
Rust
14 lines
297 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<i64>,
|
||
|
pub can_everyone_add_members: bool
|
||
|
}
|