Write a of a high-performance pattern.
When creating millions of instances, __slots__ removes __dict__ overhead. Write a of a high-performance pattern
@dataclass class User: name: str age: int email: str = "" # default value Write a of a high-performance pattern