abhishek-akbari01
fix activity log handling
3145623
raw
history blame contribute delete
242 Bytes
export interface InvoiceActivityLogInterface {
id?: number;
invoice_id: number;
user_id: number;
activity_type: string;
field_name: string;
old_value?: string | null;
new_value?: string;
created_at?: Date;
}