From d9b0a03fa45c9fb1da7344aec5789f5f04f7761b Mon Sep 17 00:00:00 2001 From: cereci5049 Date: Sun, 18 Aug 2024 12:59:34 +0530 Subject: [PATCH] 049 --- src/model/model.nim | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/src/model/model.nim b/src/model/model.nim index dc4e119..16725a3 100644 --- a/src/model/model.nim +++ b/src/model/model.nim @@ -8,4 +8,14 @@ type password*: string createdAt*: string updatedAt*: string - accessLevel*: int \ No newline at end of file + accessLevel*: int + + Orders* = object + id*: int + buyerId*: int + orderDate*: string + orderStatus*: string + shippingAddressId*: int + billingAddressId*: int + createdAt*: string + updatedAt*: string