Remove more news

This commit is contained in:
Andrew Rabert
2019-01-06 17:52:51 -05:00
parent 5af4d4d071
commit 12112ea25d
5 changed files with 0 additions and 87 deletions

View File

@@ -1,17 +0,0 @@
using MediaBrowser.Model.Querying;
namespace MediaBrowser.Model.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);
}
}

View File

@@ -1,14 +0,0 @@
using System;
namespace MediaBrowser.Model.News
{
public class NewsItem
{
public string Title { get; set; }
public string Link { get; set; }
public string Description { get; set; }
public string DescriptionHtml { get; set; }
public string Guid { get; set; }
public DateTime Date { get; set; }
}
}

View File

@@ -1,9 +0,0 @@
namespace MediaBrowser.Model.News
{
public class NewsQuery
{
public int? StartIndex { get; set; }
public int? Limit { get; set; }
}
}