Esempio n. 1
0
class SecondChild(FirstChild):
    second_kept = db.Property()
    second_removed = db.Property()

    _PROPERTY_EXPORT_BLACKLIST = [second_removed]
Esempio n. 2
0
class FirstChild(entities.BaseEntity):
    first_kept = db.Property()
    first_removed = db.Property()

    _PROPERTY_EXPORT_BLACKLIST = [first_removed]