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

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