using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace FlexJobApi.Core
{
///
/// 时间域
///
public class DateTimeRange
{
///
/// 开始时间
///
public DateTime Start { get; set; }
///
/// 结束时间
///
public DateTime End { get; set; }
}
}