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