summaryrefslogtreecommitdiff
path: root/src/models/order.ts
diff options
context:
space:
mode:
Diffstat (limited to 'src/models/order.ts')
-rw-r--r--src/models/order.ts6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/models/order.ts b/src/models/order.ts
new file mode 100644
index 0000000..c2a4190
--- /dev/null
+++ b/src/models/order.ts
@@ -0,0 +1,6 @@
+export default interface Order {
+ id: number;
+ created_at: Date;
+ public_id: string;
+ total: number;
+} \ No newline at end of file