Files
axum-async-graphql/src/domain/typ/model/typ_loeschen_input.rs
2026-06-03 22:08:44 +02:00

10 lines
163 B
Rust

use async_graphql::InputObject;
use crate::scalar::Ulid;
#[derive(InputObject)]
pub struct TypLoeschenInput {
/// Die ULID von einem Typ
pub id: Ulid,
}