shift-shell/kcms/time/timezonedata.h

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

24 lines
368 B
C
Raw Normal View History

/*
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:
QString id;
QString region;
QString city;
QString comment;
bool checked;
int offsetFromUtc;
};
#endif // TIMEZONEDATA_H