Files
Umbraco-CMS/src/Umbraco.Web/Models/ContentEditing/INotificationModel.cs
2018-06-29 19:52:40 +02:00

15 lines
442 B
C#

using System.Collections.Generic;
using System.Runtime.Serialization;
namespace Umbraco.Web.Models.ContentEditing
{
public interface INotificationModel
{
/// <summary>
/// This is used to add custom localized messages/strings to the response for the app to use for localized UI purposes.
/// </summary>
[DataMember(Name = "notifications")]
List<Notification> Notifications { get; }
}
}