mirror of
https://gitlab.com/comunic/comunicapiv3
synced 2025-01-07 11:22:36 +00:00
10 lines
178 B
Rust
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,
|
||
|
}
|