//
// Company copyright tag.
//
// stubbfel
// 10.06.2013
//----------------------------------------------------------------------
namespace CampusAppWPortalLib8.Model.Lecture
{
using System.Xml.Serialization;
///
/// Model for a course
///
public class LectureCourse
{
#region Constructor
///
/// Initializes a new instance of the class.
///
public LectureCourse()
{
}
#endregion
#region Property
///
/// Gets or sets the title of the course
///
[XmlElement("bezeichnung")]
public string Title { get; set; }
#endregion
}
}