PyMenuSite/grocery_list.py
2023-02-12 21:55:04 +01:00

13 lines
327 B
Python

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