"""Relationship data model.""" from dataclasses import dataclass @dataclass class Relationship: """A dependency link between two activities.""" task_pred_id: str task_id: str pred_task_id: str pred_type: str lag_hr_cnt: float = 0.0