narinder1231's picture
create model for audit logs table
634ea47
raw
history blame contribute delete
141 Bytes
export interface AuditLogInterface {
id?: number
action_by: number
invoice_id: number
action: string
details: string
}