source: phonelux_scrappers/classes/phone.py@ 895cd87

Last change on this file since 895cd87 was 895cd87, checked in by Marko <Marko@…>, 21 months ago

Refactored code

  • Property mode set to 100644
File size: 287 bytes
Line 
1class Phone:
2
3 def __init__(self, id, brand, model, image_url, total_offers, lowest_price):
4 self.id = id
5 self.brand = brand
6 self.model = model
7 self.image_url = image_url
8 self.total_offers = total_offers
9 self.lowest_price = lowest_price
Note: See TracBrowser for help on using the repository browser.