mirror of
https://gitlab.com/comunic/comunicapiv3
synced 2025-01-08 11:42:35 +00:00
11 lines
208 B
Rust
11 lines
208 B
Rust
|
/// User information
|
||
|
///
|
||
|
/// @author Pierre Hubert
|
||
|
#[derive(Debug)]
|
||
|
pub struct User {
|
||
|
pub id: i64,
|
||
|
pub email: String,
|
||
|
pub password: String,
|
||
|
pub first_name: String,
|
||
|
pub last_name: String,
|
||
|
}
|