using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace Hardcodet.Wpf.TaskbarNotification
{
///
/// Supported icons for the tray's ballon messages.
///
public enum BalloonIcon
{
///
/// The balloon message is displayed without an icon.
///
None,
///
/// An information is displayed.
///
Info,
///
/// A warning is displayed.
///
Warning,
///
/// An error is displayed.
///
Error
}
}