//----------------------------------------------------------------------- // // Company copyright tag. // // stubbfel // 10.06.2013 //---------------------------------------------------------------------- namespace CampusAppWPortalLib8.Model.Lecture { using System.Xml.Serialization; /// /// Model for the date of an activity /// public class LectureDate { #region Constructor /// /// Initializes a new instance of the class. /// public LectureDate() { } #endregion #region Property /// /// Gets or sets WeekDay /// [XmlElement("wochentag")] public string WeekDay { get; set; } /// /// Gets or sets From /// [XmlElement("von")] public string From { get; set; } /// /// Gets or sets To /// [XmlElement("bis")] public string To { get; set; } /// /// Gets or sets Interval /// [XmlElement("rhythmus")] public string Interval { get; set; } /// /// Gets or sets Room /// [XmlElement("raum")] public string Room { get; set; } /// /// Gets or sets StartDate /// [XmlElement("anfangsdatum")] public string StartDate { get; set; } /// /// Gets or sets EndDate /// [XmlElement("enddatum")] public string EndDate { get; set; } #endregion } }