Vendor Api

This commit is contained in:
efrilm
2025-09-12 03:11:01 +07:00
parent a019a4bdbc
commit 0e8216b0c9
4 changed files with 179 additions and 122 deletions
+23
View File
@@ -0,0 +1,23 @@
export interface Vendor {
id: string
organization_id: string
name: string
email?: string
phone_number?: string
address?: string
contact_person?: string
tax_number?: string
payment_terms?: string
notes?: string
is_active: boolean
created_at: string
updated_at: string
}
export interface Vendors {
vendors: Vendor[]
total_count: number
page: number
limit: number
total_pages: number
}