Fix Dialog Consultation (#124)

This commit is contained in:
Muhammad Rifai
2025-10-20 23:41:23 +07:00
committed by GitHub
parent ae2a924177
commit 25d0091a19
48 changed files with 3517 additions and 9 deletions
+20
View File
@@ -0,0 +1,20 @@
// Default item meta model for entities
export interface ItemMeta {
id: number
createdAt: string | null
deletedAt: string | null
updatedAt: string | null
}
// Pagination meta model for API responses
export interface PaginationMeta {
page_number: string
page_size: string
record_totalCount: string
source: string
}
export interface Base {
name: string
code: string
}