feat(FE-41): create Area type

This commit is contained in:
ValdiANS
2025-10-04 13:56:51 +07:00
parent 211951132a
commit c494f8dbd5
+12
View File
@@ -0,0 +1,12 @@
import { BaseMetadata } from '@/types/api/api-general';
export type Area = BaseMetadata & {
id: number;
name: string;
};
export type CreateAreaPayload = {
name: string;
};
export type UpdateAreaPayload = CreateAreaPayload;