Sic.Framework/MECF.Framework.Common/Hardcodet/Wpf/TaskbarNotification/Interop/BalloonFlags.cs

15 lines
211 B
C#

namespace Hardcodet.Wpf.TaskbarNotification.Interop
{
public enum BalloonFlags
{
None = 0,
Info = 1,
Warning = 2,
Error = 3,
User = 4,
NoSound = 16,
LargeIcon = 32,
RespectQuietTime = 128
}
}