class SecondChild(FirstChild): second_kept = db.Property() second_removed = db.Property() _PROPERTY_EXPORT_BLACKLIST = [second_removed]
class FirstChild(entities.BaseEntity): first_kept = db.Property() first_removed = db.Property() _PROPERTY_EXPORT_BLACKLIST = [first_removed]