export interface OrderType {
    title: string;
    status: string[];
}
export interface ChangedOrderData {
    orderCode?: string;
    orderId?: string;
    oldStatus?: string;
    newStatus?: string;
}
