/* SPDX-FileCopyrightText: 2014 Kai Uwe Broulik SPDX-License-Identifier: GPL-2.0-or-later */ #ifndef TIMEZONEDATA_H #define TIMEZONEDATA_H #include class TimeZoneData { public: QByteArray id; QString region; QString city; QString comment; bool checked; int offsetFromUtc; }; #endif // TIMEZONEDATA_H