feat: add cargo

This commit is contained in:
Maulana Sodiqin
2025-02-26 15:45:05 +07:00
parent b8606ef0bb
commit 8b2769706e
7 changed files with 125 additions and 23 deletions
+14
View File
@@ -6,3 +6,17 @@ pub struct AuthLoginRequestDto {
pub email: String,
pub password: String,
}
#[derive(Clone, Debug, Serialize, Deserialize, ToSchema)]
pub struct AuthRegisterRequestDto {
pub email: String,
pub password: String,
pub fullname: String,
}
#[derive(Clone, Debug, Serialize, Deserialize, ToSchema)]
pub struct AuthRegisterRequestDto {
pub email: String,
pub password: String,
pub fullname: String,
}