tapir-generator/endpoints.tapir

15 lines
259 B
Text
Raw Normal View History

2025-03-19 21:19:56 +01:00
ProjektProperties(
id: String,
title: String,
description: String
)
/projekt/create -> createProjekt(
2025-03-16 14:16:16 +01:00
id: ProjektId,
properties: ProjektProperties
)
2025-03-19 21:19:56 +01:00
/projekt/update -> updateProjekt(
2025-03-16 14:16:16 +01:00
id: ProjektId,
properties: ProjektProperties
)