From e1c34cf0fb2a60d9ae58d0a3c80032d904905808 Mon Sep 17 00:00:00 2001 From: ValdiANS Date: Sat, 4 Oct 2025 14:08:53 +0700 Subject: [PATCH] chore(FE-41): create BaseUom type --- src/types/api/master-data/uom.ts | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/types/api/master-data/uom.ts b/src/types/api/master-data/uom.ts index 394f6050..0d2f0210 100644 --- a/src/types/api/master-data/uom.ts +++ b/src/types/api/master-data/uom.ts @@ -1,10 +1,12 @@ import { BaseMetadata } from '@/types/api/api-general'; -export type Uom = BaseMetadata & { +export type BaseUom = { id: number; name: string; }; +export type Uom = BaseMetadata & BaseUom; + export type CreateUomPayload = { name: string; };