You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
361 B
15 lines
361 B
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; }
|
|
}
|
|
}
|