feat: user relation

This commit is contained in:
Maulana Sodiqin
2025-03-14 17:50:37 +07:00
parent 9ffe808797
commit 7ab036f5f7
22 changed files with 358 additions and 28 deletions
+7
View File
@@ -27,3 +27,10 @@ pub struct AuthRegisterRequestDto {
pub password: String,
pub fullname: String,
}
#[derive(Clone, Debug, Serialize, Deserialize, ToSchema)]
pub struct AuthQueryByEmailResponse {
pub email: String,
pub fullname: String,
pub password: String,
}