shift-shell/kcms/time/timezonedata.h
Devin Lin e147f98aea kcms: Move KCMs from plasma-settings
Having the KCMs that are mobile specific here makes more sense than in the settings application. Historically plasma-settings had a faster release cycle than Plasma, but the application is now moving to the Plasma release schedule and so it makes sense do this now.
2023-03-13 18:45:47 -07:00

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