16 lines
186 B
C#
16 lines
186 B
C#
using System;
|
|
|
|
namespace SalesCatalog.Model
|
|
{
|
|
public class Period
|
|
{
|
|
public Period ()
|
|
{
|
|
}
|
|
public DateTime StartDate { get; set; }
|
|
public DateTime EndDate { get; set; }
|
|
|
|
}
|
|
}
|
|
|