yavsc/yavscModel/FrontOffice/Catalog/Period.cs

16 lines
191 B
C#

using System;
namespace Yavsc.Model.FrontOffice
{
public class Period
{
public Period ()
{
}
public DateTime StartDate { get; set; }
public DateTime EndDate { get; set; }
}
}