75 lines
1.8 KiB
C#
75 lines
1.8 KiB
C#
//-----------------------------------------------------------------------
|
|
// <copyright file="LectureDate.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 the date of an activity
|
|
/// </summary>
|
|
public class LectureDate
|
|
{
|
|
#region Constructor
|
|
|
|
/// <summary>
|
|
/// Initializes a new instance of the <see cref="LectureDate" /> class.
|
|
/// </summary>
|
|
public LectureDate()
|
|
{
|
|
}
|
|
|
|
#endregion
|
|
|
|
#region Property
|
|
|
|
/// <summary>
|
|
/// Gets or sets WeekDay
|
|
/// </summary>
|
|
[XmlElement("wochentag")]
|
|
public string WeekDay { get; set; }
|
|
|
|
/// <summary>
|
|
/// Gets or sets From
|
|
/// </summary>
|
|
[XmlElement("von")]
|
|
public string From { get; set; }
|
|
|
|
/// <summary>
|
|
/// Gets or sets To
|
|
/// </summary>
|
|
[XmlElement("bis")]
|
|
public string To { get; set; }
|
|
|
|
/// <summary>
|
|
/// Gets or sets Interval
|
|
/// </summary>
|
|
[XmlElement("rhythmus")]
|
|
public string Interval { get; set; }
|
|
|
|
/// <summary>
|
|
/// Gets or sets Room
|
|
/// </summary>
|
|
[XmlElement("raum")]
|
|
public string Room { get; set; }
|
|
|
|
/// <summary>
|
|
/// Gets or sets StartDate
|
|
/// </summary>
|
|
[XmlElement("anfangsdatum")]
|
|
public string StartDate { get; set; }
|
|
|
|
/// <summary>
|
|
/// Gets or sets EndDate
|
|
/// </summary>
|
|
[XmlElement("enddatum")]
|
|
public string EndDate { get; set; }
|
|
|
|
#endregion
|
|
}
|
|
}
|