mirror of
https://gitlab.com/comunic/comunicapiv3
synced 2025-01-07 03:12:36 +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,
|
|
} |