chore(FE-41): create BaseUom type

This commit is contained in:
ValdiANS
2025-10-04 14:08:53 +07:00
parent 4332881ba6
commit e1c34cf0fb
+3 -1
View File
@@ -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;
};