//-----------------------------------------------------------------------
//
// The MIT License (MIT). Copyright (c) 2013 BTU/IIT.
//
// Stubbfel
// 15.10.2013
// Implements the lecture course class
//-----------------------------------------------------------------------
namespace CampusAppWPortalLib8.Model.Lecture
{
using System.Xml.Serialization;
/// Model for a course.
/// Stubbfel, 15.10.2013.
public class LectureCourse
{
#region Constructor
/// Initializes a new instance of the class.
/// Stubbfel, 15.10.2013.
public LectureCourse()
{
}
#endregion
#region Property
/// Gets or sets the title of the course.
/// The title.
[XmlElement("bezeichnung")]
public string Title { get; set; }
#endregion
}
}