mirror of
https://github.com/chylex/TweetDuck.git
synced 2025-04-23 12:15:48 +02:00
11 lines
181 B
C#
11 lines
181 B
C#
using System;
|
|
|
|
namespace TweetDck.Core.Notification{
|
|
[Flags]
|
|
public enum NotificationFlags{
|
|
None = 0,
|
|
DisableContextMenu = 1,
|
|
TopMost = 2
|
|
}
|
|
}
|