Files
jellyfin-jellyfin-1/MediaBrowser.Model/News/NewsItem.cs

15 lines
361 B
C#
Raw Normal View History

2014-01-18 16:52:01 -05:00
using System;
namespace MediaBrowser.Model.News
{
public class NewsItem
{
public string Title { get; set; }
public string Link { get; set; }
public string Description { get; set; }
2014-01-18 23:25:01 -05:00
public string DescriptionHtml { get; set; }
2014-01-18 16:52:01 -05:00
public string Guid { get; set; }
public DateTime Date { get; set; }
}
}