32 lines
633 B
C#
32 lines
633 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
|
|
namespace Umbraco.Web.UI
|
|
{
|
|
public enum SpeechBubbleIcon
|
|
{
|
|
/// <summary>
|
|
/// Save icon
|
|
/// </summary>
|
|
Save = 0,
|
|
/// <summary>
|
|
/// Info icon
|
|
/// </summary>
|
|
Info = 1,
|
|
/// <summary>
|
|
/// Error icon
|
|
/// </summary>
|
|
Error = 2,
|
|
/// <summary>
|
|
/// Success icon
|
|
/// </summary>
|
|
Success = 3,
|
|
/// <summary>
|
|
/// Warning icon
|
|
/// </summary>
|
|
Warning = 4
|
|
}
|
|
}
|