feat: auth login

This commit is contained in:
Maulana Sodiqin
2025-02-08 00:58:54 +07:00
parent c637a356eb
commit ffc72367d5
6 changed files with 44 additions and 3 deletions
+8
View File
@@ -0,0 +1,8 @@
use serde::{Deserialize, Serialize};
use utoipa::ToSchema;
#[derive(Clone, Debug, Serialize, Deserialize, ToSchema)]
pub struct AuthLoginRequestDto {
pub email: String,
pub password: String,
}