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