jellyfin/MediaBrowser.Controller/Notifications/INotificationTypeFactory.cs
2014-04-26 23:42:05 -04:00

15 lines
406 B
C#

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();
}
}