Files
axum-async-graphql/src/domain/typ/model/typ_loeschen_input.rs

10 lines
153 B
Rust
Raw Normal View History

2026-05-31 20:24:10 +02:00
use async_graphql::InputObject;
use crate::scalar::Id;
#[derive(InputObject)]
pub struct TypLoeschenInput {
/// Die ID einer Typ
pub id: Id,
}