Bansari Akhani
invoice approval
178b3d8
raw
history blame contribute delete
190 Bytes
export interface InvoiceApprovalAttributes {
id?: number;
invoice_id: number;
approved_by: number;
approval_role_id: number;
comment?: string;
created_at?: Date;
}