mirror of
https://github.com/chylex/TweetDuck.git
synced 2025-04-30 05:34:06 +02:00
12 lines
216 B
C#
12 lines
216 B
C#
using System;
|
|
|
|
namespace TweetDck.Core.Utils.Notification{
|
|
[Flags]
|
|
public enum NotificationFlags{
|
|
None = 0,
|
|
AutoHide = 1,
|
|
DisableScripts = 2,
|
|
DisableContextMenu = 4
|
|
}
|
|
}
|