feat: add order-view (#9)
This commit is contained in:
1
src/models/api/index.ts
Normal file
1
src/models/api/index.ts
Normal file
@@ -0,0 +1 @@
|
||||
export * from './order-view';
|
||||
14
src/models/api/order-view.ts
Normal file
14
src/models/api/order-view.ts
Normal file
@@ -0,0 +1,14 @@
|
||||
import { Order } from "../landing";
|
||||
|
||||
export type FetchOrderQueryResponse = {
|
||||
id: string;
|
||||
orderDate: string;
|
||||
carNumber: string;
|
||||
carBody: number;
|
||||
carColor?: string;
|
||||
startWashTime: string;
|
||||
endWashTime: string;
|
||||
status: Order.Status;
|
||||
phone: string;
|
||||
location: string;
|
||||
};
|
||||
Reference in New Issue
Block a user