blender-gdsimporter/gds/structure.py

11 lines
221 B
Python
Raw Normal View History

from datetime import datetime
class Structure(object):
# metainfo
creation_date = datetime.now()
last_mod = datetime.now()
name = "NONAME"
# contains all the elements
elements = []