Skip to content
Snippets Groups Projects
schema.py 183 B
Newer Older
from yams.buildobjs import (EntityType, String, Int,
                            SubjectRelation, RelationDefinition)


class Person(EntityType):
    name = String()
    age = Int()