model
Model implementation for a custom list.
CustomListEntryModel
Bases: BaseModel
A model class representing a custom list entry.
Source code in mlte/custom_list/model.py
19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 | |
description
instance-attribute
A description of the the entry.
name
instance-attribute
A name to uniquely identify the entry.
parent = None
class-attribute
instance-attribute
ID of parent.
CustomListModel
Bases: BaseModel
A model class representing a custom list.
Source code in mlte/custom_list/model.py
9 10 11 12 13 14 15 16 | |
entries = []
class-attribute
instance-attribute
A list of entries in the list.
name
instance-attribute
An name to uniquely identify the list.