module d_webservice_example.data.todo_notification; import d_webservice_example.enums.todo_notification_type : TodoNotificationType; import d_webservice_example.model.todo : Todo; struct TodoNotification { TodoNotificationType type; Todo todo; }