using MediaBrowser.Model.News;
using MediaBrowser.Model.Querying;
namespace MediaBrowser.Controller.News
{
///
/// Interface INewsFeed
///
public interface INewsService
{
///
/// Gets the product news.
///
/// The query.
/// QueryResult{NewsItem}.
QueryResult GetProductNews(NewsQuery query);
}
}