It would be a cool feature to have properties that participate in asdict method. ```python @attr.s class SomeClass: @attr.property(asdict=True) def some_dynamic_attr(self): return True print(asdict(SomeClass())) >> {'some_dynamic_attr': True} ```