7 lines
134 B
Python
7 lines
134 B
Python
|
from collections import namedtuple
|
||
|
|
||
|
class MenuItem(object):
|
||
|
|
||
|
def __init__(self, **kwargs):
|
||
|
self.__dict__.update(**kwargs)
|