PyMenuSite/grocery_list.py

13 lines
327 B
Python
Raw Permalink Normal View History

2023-02-12 15:55:04 -05:00
class GroceryList():
def __init__(self, id: str, articles: list):
"""
Groceries List
:param id: uuid
:type id: str
:param articles: list of articles
:type articles: list[Article]
:return: the grocery list
:rtype: GroceryList
"""
self.id = str