aboutsummaryrefslogtreecommitdiff
path: root/notifications.h
blob: e8f1591304d130fe08893100bf288ee84404b692 (plain) (blame)
1
2
3
4
5
6
7
8
9
#pragma once
#include <QObject>

class DcNotifications: public QObject {
    Q_OBJECT
public:
    explicit DcNotifications(QObject *parent = nullptr);
    Q_INVOKABLE void send(QString event, QString pfpPath, QString title, QString message);
};