From b5d9c55fbc78c22f15af2e1f7ee31e3cca767e4b Mon Sep 17 00:00:00 2001 From: ValdiANS Date: Sat, 4 Oct 2025 12:22:00 +0700 Subject: [PATCH] chore(FE-41): create UOM type --- src/types/api/master-data/uom.ts | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 src/types/api/master-data/uom.ts diff --git a/src/types/api/master-data/uom.ts b/src/types/api/master-data/uom.ts new file mode 100644 index 00000000..394f6050 --- /dev/null +++ b/src/types/api/master-data/uom.ts @@ -0,0 +1,12 @@ +import { BaseMetadata } from '@/types/api/api-general'; + +export type Uom = BaseMetadata & { + id: number; + name: string; +}; + +export type CreateUomPayload = { + name: string; +}; + +export type UpdateUomPayload = CreateUomPayload;