37 lines
1.1 KiB
C#
37 lines
1.1 KiB
C#
//-----------------------------------------------------------------------
|
|
// <copyright file="LectureCourse.cs" company="BTU/IIT">
|
|
// The MIT License (MIT). Copyright (c) 2013 BTU/IIT.
|
|
// </copyright>
|
|
// <author>Stubbfel</author>
|
|
// <date>15.10.2013</date>
|
|
// <summary>Implements the lecture course class</summary>
|
|
//-----------------------------------------------------------------------
|
|
namespace CampusAppWPortalLib8.Model.Lecture
|
|
{
|
|
using System.Xml.Serialization;
|
|
|
|
/// <summary> Model for a course. </summary>
|
|
/// <remarks> Stubbfel, 15.10.2013. </remarks>
|
|
public class LectureCourse
|
|
{
|
|
#region Constructor
|
|
|
|
/// <summary> Initializes a new instance of the <see cref="LectureCourse" /> class. </summary>
|
|
/// <remarks> Stubbfel, 15.10.2013. </remarks>
|
|
public LectureCourse()
|
|
{
|
|
}
|
|
|
|
#endregion
|
|
|
|
#region Property
|
|
|
|
/// <summary> Gets or sets the title of the course. </summary>
|
|
/// <value> The title. </value>
|
|
[XmlElement("bezeichnung")]
|
|
public string Title { get; set; }
|
|
|
|
#endregion
|
|
}
|
|
}
|