NewsChannel.cs 297 B

123456789101112
  1. using System.Collections.Generic;
  2. namespace MediaBrowser.Model.News
  3. {
  4. public class NewsChannel
  5. {
  6. public string Title { get; set; }
  7. public string Link { get; set; }
  8. public string Description { get; set; }
  9. public List<NewsItem> Items { get; set; }
  10. }
  11. }