Files
Umbraco-CMS/src/Umbraco.Web/Models/ContentEditing/Notification.cs

16 lines
487 B
C#
Raw Normal View History

using System.Runtime.Serialization;
using Umbraco.Web.UI;
namespace Umbraco.Web.Models.ContentEditing
{
[DataContract(Name = "notification", Namespace = "")]
public class Notification
{
[DataMember(Name = "header")]
public string Header { get; set; }
[DataMember(Name = "message")]
public string Message { get; set; }
[DataMember(Name = "type")]
public SpeechBubbleIcon NotificationType { get; set; }
}
2013-07-22 17:13:56 +10:00
}