Files
imphnen-backend-service/src/apps/v1/users/users_schema.rs
T

11 lines
233 B
Rust
Raw Normal View History

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
}