jellyfin/MediaBrowser.Model/News/NewsItem.cs

15 lines
361 B
C#
Raw Normal View History

2014-01-18 22:52:01 +01: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-19 05:25:01 +01:00
public string DescriptionHtml { get; set; }
2014-01-18 22:52:01 +01:00
public string Guid { get; set; }
public DateTime Date { get; set; }
}
}