aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Model/News/NewsItem.cs
blob: 2a05c420a7bb650133723a58682df76b97f24dc9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
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; }
    }
}