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