1
0
mirror of https://gitlab.com/comunic/comunicapiv3 synced 2025-01-05 18:38:51 +00:00
comunicapiv3/src/data/new_account.rs

10 lines
178 B
Rust

//! # New account
//!
//! @author Pierre Hubert
pub struct NewAccount {
pub first_name: String,
pub last_name: String,
pub email: String,
pub password: String,
}