debt-pirate/api/src/requests/user/new_user/models/post_request.rs

10 lines
183 B
Rust
Raw Normal View History

use serde::Deserialize;
#[derive(Debug, Deserialize)]
pub struct UserPostRequest {
pub username: String,
pub password: String,
pub email: String,
pub name: String,
}