using MediaBrowser.Model.Notifications; using System.Collections.Generic; namespace MediaBrowser.Controller.Notifications { public interface INotificationTypeFactory { /// /// Gets the notification types. /// /// IEnumerable{NotificationTypeInfo}. IEnumerable GetNotificationTypes(); } }