9 lines
242 B
Rust
9 lines
242 B
Rust
use async_graphql::InputObject;
|
|
use serde::{Deserialize, Serialize};
|
|
|
|
#[derive(Debug, Serialize, Deserialize, Clone, PartialEq, Eq, InputObject)]
|
|
pub struct CreateProjectMutation {
|
|
pub name: String,
|
|
pub description: Option<String>,
|
|
}
|