Get Chart of Account Types

This commit is contained in:
efrilm
2025-09-12 19:18:43 +07:00
parent 76ee71e7fe
commit 9cbb41c2ad
3 changed files with 101 additions and 7 deletions
+16
View File
@@ -0,0 +1,16 @@
export interface ChartOfAccountType {
id: string
name: string
code: string
description: string
is_active: boolean
created_at: string
updated_at: string
}
export interface ChartOfAccountTypes {
data: ChartOfAccountType[]
limit: number
page: number
total: number
}