38 lines
878 B
C#
38 lines
878 B
C#
// <copyright file="LectureCourse.cs" company="BTU/IIT">
|
|
// Company copyright tag.
|
|
// </copyright>
|
|
// <author>stubbfel</author>
|
|
// <sience>10.06.2013</sience>
|
|
//----------------------------------------------------------------------
|
|
namespace CampusAppWPortalLib8.Model.Lecture
|
|
{
|
|
using System.Xml.Serialization;
|
|
|
|
/// <summary>
|
|
/// Model for a course
|
|
/// </summary>
|
|
public class LectureCourse
|
|
{
|
|
#region Constructor
|
|
|
|
/// <summary>
|
|
/// Initializes a new instance of the <see cref="LectureCourse" /> class.
|
|
/// </summary>
|
|
public LectureCourse()
|
|
{
|
|
}
|
|
|
|
#endregion
|
|
|
|
#region Property
|
|
|
|
/// <summary>
|
|
/// Gets or sets the title of the course
|
|
/// </summary>
|
|
[XmlElement("bezeichnung")]
|
|
public string Title { get; set; }
|
|
|
|
#endregion
|
|
}
|
|
}
|