DisTime.cs 276 B

12345678910111213
  1. namespace SiteCore
  2. {
  3. public class DisTime
  4. {
  5. public DisTime(string _stime, string _etime)
  6. {
  7. stime = _stime;
  8. etime = _etime;
  9. }
  10. public string stime { get; set; }
  11. public string etime { get; set; }
  12. }
  13. }