From d0ade38dcc20478188a9db65dad7a97a3bd4c9a4 Mon Sep 17 00:00:00 2001 From: Hironsan Date: Mon, 31 May 2021 14:46:19 +0900 Subject: [PATCH] Add labelCommand.ts --- frontend/services/application/label/labelCommand.ts | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 frontend/services/application/label/labelCommand.ts diff --git a/frontend/services/application/label/labelCommand.ts b/frontend/services/application/label/labelCommand.ts new file mode 100644 index 00000000..fb25e6d0 --- /dev/null +++ b/frontend/services/application/label/labelCommand.ts @@ -0,0 +1,4 @@ +import { LabelDTO } from './labelData' + +export type CreateLabelCommand = Omit +export type UpdateLabelCommand = LabelDTO