| Krzysztof Grobelny | e6d4887 | 2022-02-08 13:41:30 +0100 | [diff] [blame] | 1 | #pragma once |
| 2 | |||||
| 3 | #include <string> | ||||
| 4 | |||||
| 5 | namespace messages | ||||
| 6 | { | ||||
| 7 | |||||
| 8 | struct CollectTriggerIdReq | ||||
| 9 | { | ||||
| 10 | std::string reportId; | ||||
| 11 | }; | ||||
| 12 | |||||
| 13 | struct CollectTriggerIdResp | ||||
| 14 | { | ||||
| 15 | std::string triggerId; | ||||
| 16 | }; | ||||
| 17 | |||||
| 18 | } // namespace messages | ||||