jellyfin/MediaBrowser.Controller/Notifications/INotificationTypeFactory.cs

15 lines
406 B
C#
Raw Normal View History

2014-04-27 05:42:05 +02:00
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();
}
}