aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Controller/Notifications/INotificationTypeFactory.cs
blob: 43b18101c5e23dcef7811843c1955a9c6064ecc9 (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();
    }
}