dry-wash-pl/src/models/api/order-view.ts
RustamRu 8a0dff682b
Some checks failed
it-academy/dry-wash-pl/pipeline/head There was a failure building this commit
it-academy/dry-wash-pl/pipeline/pr-main There was a failure building this commit
feat: add order-view (#9)
2024-12-22 11:15:50 +03:00

14 lines
284 B
TypeScript

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;
};