from __future__ import annotations from dataclasses import dataclass from typing import Optional @dataclass class Benefit: brief_description: str extended_description: Optional[str] = None def __str__(self) -> str: if self.extended_description is not None: return f... Read more
This company has no org chart yet
This company has no teams yet
This company has no offices yet