Files
Umbraco-CMS/src/Umbraco.Web/UI/SpeechBubbleIcon.cs
Shannon Deminick 1be3af1e31 Working on #U4-1358 - moving Base page classes to their correct location/assembly. Migrated all installation webforms files and associated helper files to
their correct locations/namespaces/assemblies and obsoleted all of the old ones and ensure the old webforms files don't exist where the obsoleted ones were.
Fixes a security issue with the installer ajax service (used to be p.aspx, now is InstallerRestService.aspx)
2013-02-03 05:06:11 +06:00

32 lines
613 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,
/// <summary>
/// Info icon
/// </summary>
Info,
/// <summary>
/// Error icon
/// </summary>
Error,
/// <summary>
/// Success icon
/// </summary>
Success,
/// <summary>
/// Warning icon
/// </summary>
Warning
}
}