1
0
mirror of https://gitlab.com/comunic/comunicapiv3 synced 2025-01-07 11:22:36 +00:00
comunicapiv3/src/data/new_account.rs

10 lines
178 B
Rust
Raw Normal View History

2020-07-13 11:35:25 +00:00
//! # New account
//!
//! @author Pierre Hubert
pub struct NewAccount {
pub first_name: String,
pub last_name: String,
pub email: String,
pub password: String,
}