24 lines
779 B
C#
24 lines
779 B
C#
//-----------------------------------------------------------------------
|
|
// <copyright file="ExamlistModel.cs" company="BTU/IIT">
|
|
// Company copyright tag.
|
|
// </copyright>
|
|
// <author>stubbfel</author>
|
|
// <sience>02.09.2013</sience>
|
|
//----------------------------------------------------------------------
|
|
namespace CampusAppWP8.Model.Exams
|
|
{
|
|
using System.Collections.ObjectModel;
|
|
using System.Xml.Serialization;
|
|
|
|
/// <summary>Exam list model.</summary>
|
|
/// <remarks>Stubbfel, 02.09.2013.</remarks>
|
|
[XmlRoot("links")]
|
|
public class ExamListModel
|
|
{
|
|
/// <summary>Gets or sets the exams.</summary>
|
|
/// <value>The exams.</value>
|
|
[XmlElement("link")]
|
|
public ObservableCollection<ExamModel> Exams { get; set; }
|
|
}
|
|
}
|