add menu template salary

This commit is contained in:
Warunee Tamkoo 2024-09-12 16:41:05 +07:00
parent 935c85aba0
commit f1d1542b90
4 changed files with 387 additions and 4 deletions

View file

@ -15,8 +15,14 @@ interface ListOrder {
category?: string;
}
interface ListTemplateSalary {
id: number | null;
name: string;
status?: boolean;
}
interface Tabs {
value: string;
label: string;
}
export type { Pagination, ActiveOptions, ListOrder, Tabs };
export type { Pagination, ActiveOptions, ListOrder, Tabs, ListTemplateSalary };