mirror of
https://invent.kde.org/marcoa/shift-shell.git
synced 2026-04-26 14:23:09 +00:00
23 lines
371 B
C++
23 lines
371 B
C++
/*
|
|
SPDX-FileCopyrightText: 2014 Kai Uwe Broulik <kde@privat.broulik.de>
|
|
|
|
SPDX-License-Identifier: GPL-2.0-or-later
|
|
*/
|
|
|
|
#ifndef TIMEZONEDATA_H
|
|
#define TIMEZONEDATA_H
|
|
|
|
#include <QString>
|
|
|
|
class TimeZoneData
|
|
{
|
|
public:
|
|
QByteArray id;
|
|
QString region;
|
|
QString city;
|
|
QString comment;
|
|
bool checked;
|
|
int offsetFromUtc;
|
|
};
|
|
|
|
#endif // TIMEZONEDATA_H
|