diff --git a/CampusAppWP8/CampusAppWP8/model/RSS/RSSChannelModel.cs b/CampusAppWP8/CampusAppWP8/model/RSS/RSSChannelModel.cs
new file mode 100644
index 00000000..1fd102de
--- /dev/null
+++ b/CampusAppWP8/CampusAppWP8/model/RSS/RSSChannelModel.cs
@@ -0,0 +1,51 @@
+//-----------------------------------------------------------------------------
+//
+// Company copyright tag.
+//
+// fiedlchr
+// 24.06.2013
+//-----------------------------------------------------------------------------
+namespace CampusAppWP8.Model.RSS
+{
+ using System.Collections.ObjectModel;
+ using System.Xml.Serialization;
+
+ ///
+ /// Channel Model, which contains the RSS feed item list.
+ ///
+ public class RSSChannelModel
+ {
+ ///
+ /// RSS feed information item list.
+ ///
+ [XmlElement("item")]
+ private ObservableCollection item;
+
+ ///
+ /// Initializes a new instance of the class.
+ ///
+ public RSSChannelModel()
+ {
+ this.item = new ObservableCollection();
+ }
+
+ ///
+ /// Gets or sets the RSS feed item list.
+ ///
+ public ObservableCollection Item
+ {
+ get
+ {
+ return this.item;
+ }
+
+ set
+ {
+ if (value != this.item)
+ {
+ this.item = value;
+ }
+ }
+ }
+ }
+}