sms entegrasyonu ve ana sayfa işlemleri
This commit is contained in:
13
types/customer.ts
Normal file
13
types/customer.ts
Normal file
@@ -0,0 +1,13 @@
|
||||
export interface Customer {
|
||||
id: number
|
||||
full_name: string
|
||||
email?: string | null
|
||||
phone?: string | null
|
||||
address?: string | null
|
||||
notes?: string | null
|
||||
created_at: string
|
||||
updated_at: string
|
||||
}
|
||||
|
||||
export type CustomerInsert = Omit<Customer, 'id' | 'created_at' | 'updated_at'>
|
||||
export type CustomerUpdate = Partial<CustomerInsert>
|
||||
Reference in New Issue
Block a user