aboutsummaryrefslogtreecommitdiffstats
path: root/examples/quickcontrols/eventcalendar/event.h
blob: b2cc6b45cfb749f1989cd19da3f6a5c32945bd03 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// Copyright (C) 2021 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR BSD-3-Clause

#ifndef EVENT_H
#define EVENT_H

#include <QAbstractListModel>
#include <QDateTime>

struct Event {
    QString name;
    QDateTime startDate;
    QDateTime endDate;
};

#endif // EVENT_H