summaryrefslogtreecommitdiffstats
path: root/common/commands/notification.fbs
blob: 6684472e0678355b337b9b1b82b638ebc4e3e92e (plain)
1
2
3
4
5
6
7
8
9
namespace Akonadi2;

enum NotificationType : byte { Shutdown = 1, Status, Warning, Progress }

table Notification {
    type: NotificationType = Status;
}

root_type Notification;