// // RssFeeds.cs // // Author: // paul <${AuthorEmail}> // // Copyright (c) 2015 paul // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU Lesser General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU Lesser General Public License for more details. // // You should have received a copy of the GNU Lesser General Public License // along with this program. If not, see . using System; namespace Yavsc.Model { /// /// Rss feeds entry. /// public class RssFeedsEntry { /// /// Gets or sets the title. /// /// The title. public string Title { get ; set; } /// /// Gets or sets the description. /// /// The description. public string Description { get ; set; } /// /// Gets or sets the pub date. /// /// The pub date. public DateTime PubDate { get ; set; } /// /// Gets or sets the link. /// /// The link. public string Link { get ; set; } } /// /// Rss feeds channel. /// public class RssFeedsChannel { /// /// Gets or sets the title. /// /// The title. public string Title { get ; set; } /// /// Gets or sets the description. /// /// The description. public string Description { get ; set; } /// /// Gets or sets the last build date. /// /// The last build date. public DateTime LastBuildDate { get ; set; } /// /// Gets or sets the link. /// /// The link. public string Link { get ; set; } /// /// The entries. /// public RssFeedsEntry[] Entries; } }