mirror of
				https://github.com/jellyfin/jellyfin.git
				synced 2025-11-04 03:27:21 -05:00 
			
		
		
		
	
		
			
				
	
	
		
			19 lines
		
	
	
		
			472 B
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			19 lines
		
	
	
		
			472 B
		
	
	
	
		
			C#
		
	
	
	
	
	
using MediaBrowser.Model.News;
 | 
						|
using MediaBrowser.Model.Querying;
 | 
						|
 | 
						|
namespace MediaBrowser.Controller.News
 | 
						|
{
 | 
						|
    /// <summary>
 | 
						|
    /// Interface INewsFeed
 | 
						|
    /// </summary>
 | 
						|
    public interface INewsService
 | 
						|
    {
 | 
						|
        /// <summary>
 | 
						|
        /// Gets the product news.
 | 
						|
        /// </summary>
 | 
						|
        /// <param name="query">The query.</param>
 | 
						|
        /// <returns>QueryResult{NewsItem}.</returns>
 | 
						|
        QueryResult<NewsItem> GetProductNews(NewsQuery query);
 | 
						|
    }
 | 
						|
}
 |