Files
ntfysh-windows/ntfysh_client/Notifications/NotificationPriority.cs
Alexander Horner 7f73bd2cd1 Add support for priority
Set default title to topic unique, as displayed in subscriptions list, if not provided
Increase toast timeout to 5 seconds
2022-12-08 19:54:14 +00:00

11 lines
182 B
C#

namespace ntfysh_client.Notifications
{
public enum NotificationPriority
{
Min = 1,
Low = 2,
Default = 3,
High = 4,
Max = 5
}
}