feat(FE-102) create master data flock and add LTI theme

This commit is contained in:
randy-ar
2025-10-15 20:01:41 +07:00
parent 302da65c59
commit e2b35e765c
13 changed files with 677 additions and 2 deletions
+14
View File
@@ -0,0 +1,14 @@
import { BaseMetadata } from "../api-general";
export type BaseFlock = {
id: number;
name: string;
}
export type Flock = BaseMetadata & BaseFlock;
export type CreateFlockPayload = {
name: string;
}
export type UpdateFlockPayload = CreateFlockPayload;