using System;
using System.Collections.Generic;
using System.Text;
namespace HKLib.Dto
{
public class TimeSpilte
{
///
/// 早 例如 8,10
///
public string AM { get; set; }
///
/// 中 例如 11,13
///
public string PM { get; set; }
///
/// 晚 例如 17,19
///
public string AT { get; set; }
}
}