Skip to content
Snippets Groups Projects
mtzfile_model.py 245 B
from neomodel import StructuredNode, StringProperty, IntegerProperty,UniqueIdProperty, RelationshipTo
from uuid import uuid4

class MTZfile(StructuredNode):
	uuid=StringProperty(unique_index=True, default=uuid4)
	rsf_filetype = StringProperty()