chore(FE-41): create UOM type

This commit is contained in:
ValdiANS
2025-10-04 12:22:00 +07:00
parent d941674f9a
commit b5d9c55fbc
+12
View File
@@ -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;