1
0
mirror of https://gitlab.com/comunic/comunicapiv3 synced 2025-01-07 03:12:36 +00:00
comunicapiv3/src/data/new_group.rs
2020-06-24 09:08:31 +02:00

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,
}