| 22 | namespace mitk |
| 23 | { |
| 24 | void to_json(nlohmann::json& json, const SegmentationTaskList::Task::Form& form) |
| 25 | { |
| 26 | json["Path"] = form.Path; |
| 27 | json["Result"] = form.Result; |
| 28 | } |
| 29 | |
| 30 | void from_json(const nlohmann::json& json, SegmentationTaskList::Task::Form& form) |
| 31 | { |
nothing calls this directly
no test coverage detected