mirror of
https://gitlab.com/comunic/comunicapiv3
synced 2025-01-08 11:42:35 +00:00
10 lines
162 B
Rust
10 lines
162 B
Rust
|
//! # New group information
|
||
|
//!
|
||
|
//! @author Pierre Hubert
|
||
|
|
||
|
use crate::data::user::UserID;
|
||
|
|
||
|
pub struct NewGroup {
|
||
|
pub name: String,
|
||
|
pub owner_id: UserID,
|
||
|
}
|