Vendor Api
This commit is contained in:
@@ -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
|
||||
}
|
||||
Reference in New Issue
Block a user