class MatsimActivityToMatsimSchedule: """ Hub function to nrcan construction function class """ def __init__(self): self._dictionary = { 'work': '08:00:00-18:00:00', 'home': '00:00:00-30:00:00', 'edu': '08:00:00-18:00:00', 'secondary': '08:00:00-20:00:00' } @property def dictionary(self) -> dict: """ Get the dictionary :return: {} """ return self._dictionary