File indexing completed on 2025-01-26 05:07:37
0001 /* 0002 SPDX-FileCopyrightText: 2014 Kai Uwe Broulik <kde@privat.broulik.de> 0003 0004 SPDX-License-Identifier: GPL-2.0-or-later 0005 */ 0006 0007 #pragma once 0008 0009 #include <QString> 0010 0011 class TimeZoneData 0012 { 0013 public: 0014 QString id; 0015 QString region; 0016 QString city; 0017 QString comment; 0018 bool checked = false; 0019 bool isLocalTimeZone = false; 0020 int offsetFromUtc = 0; 0021 };