using System; namespace Yavsc.Model.FrontOffice.Catalog { /// /// Period. /// public class Period { /// /// Initializes a new instance of the class. /// public Period () { } /// /// Gets or sets the start date. /// /// The start date. public DateTime StartDate { get; set; } /// /// Gets or sets the end date. /// /// The end date. public DateTime EndDate { get; set; } } }