/* * This work is licensed under the Creative Commons Attribution 2.5 License. * To view a copy of this license, visit http://creativecommons.org/licenses/by/2.5/ * or send a letter to Creative Commons, 543 Howard Street, 5th Floor, * San Francisco, California, 94105, USA. * * Original developer: David Betz * */ using System; using System.Collections.Generic; using System.Text; namespace DataFeedFramework.Web.Controls { internal class RssBindingItem { private String name; private String link; public String Name { get { return name; } set { name = value; } } public String Link { get { return link; } set { link = value; } } public RssBindingItem() { } public RssBindingItem(String name, String link) { this.Name = name; this.Link = link; } } }