8 lines
197 B
Rust
8 lines
197 B
Rust
use async_graphql::InputObject;
|
|
use serde::{Deserialize, Serialize};
|
|
|
|
#[derive(Debug, Serialize, Deserialize, Clone, PartialEq, Eq, InputObject)]
|
|
pub struct CreateItemDto {
|
|
pub name: String,
|
|
}
|