aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Controller/Notifications/INotificationTypeFactory.cs
blob: 9f1d2841d7cdea8c43fe29c287f25d6a5b03c7c3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
using System.Collections.Generic;
using MediaBrowser.Model.Notifications;

namespace MediaBrowser.Controller.Notifications
{
    public interface INotificationTypeFactory
    {
        /// <summary>
        /// Gets the notification types.
        /// </summary>
        /// <returns>IEnumerable{NotificationTypeInfo}.</returns>
        IEnumerable<NotificationTypeInfo> GetNotificationTypes();
    }
}