2013-08-12 15:06:12 +02:00
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
|
|
|
|
|
|
|
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>
|
|
|
|
|
|
List<Notification> Notifications { get; }
|
|
|
|
|
|
}
|
2013-07-22 17:13:56 +10:00
|
|
|
|
}
|