feat: add cargo
This commit is contained in:
@@ -0,0 +1,3 @@
|
||||
pub mod users_dto;
|
||||
|
||||
pub use users_dto::*;
|
||||
@@ -0,0 +1,8 @@
|
||||
use serde::{Deserialize, Serialize};
|
||||
use utoipa::ToSchema;
|
||||
|
||||
#[derive(Clone, Debug, Serialize, Deserialize, ToSchema)]
|
||||
pub struct UsersItemDto {
|
||||
pub email: String,
|
||||
pub fullname: String,
|
||||
}
|
||||
Reference in New Issue
Block a user