2025-03-14 17:50:37 +07:00
|
|
|
use serde::{Deserialize, Serialize};
|
|
|
|
|
use utoipa::ToSchema;
|
|
|
|
|
|
|
|
|
|
#[derive(Clone, Debug, Serialize, Deserialize, ToSchema)]
|
|
|
|
|
pub struct UsersSchema {
|
|
|
|
|
pub email: String,
|
|
|
|
|
pub fullname: String,
|
|
|
|
|
pub password: String,
|
2025-03-18 14:13:53 +07:00
|
|
|
pub is_active: bool,
|
2025-03-14 17:50:37 +07:00
|
|
|
}
|