Also instead of making all class as dataclass, it would be possible to make only some properties as instance properties: ```python class Client: bank = Bank()
@instance name = Name()
print(f'Client.bank is {Client.bank}') client = Client() print(f'client.name is {client.name}') ```