aboutsummaryrefslogtreecommitdiff
path: root/common.py
blob: 3ebea3694d3ba17b329545425ab0ddd077dc7078 (plain)
1
2
3
4
5
6
7
8
# Common classes and methods.

class Food :
    def __init__(self,name, price="", category=None, veggie=False) :
        self.name = name
        self.price = price
        self.category = category
        self.veggie = veggie