WorkShift.cs 885 B

12345678910111213141516171819202122232425262728293031323334353637
  1. using Prism.Mvvm;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.Linq;
  5. using System.Text;
  6. using System.Threading.Tasks;
  7. namespace TeamAAS_VP.Models
  8. {
  9. public class WorkShift : BindableBase
  10. {
  11. /// <summary>
  12. /// 白班时间
  13. /// </summary>
  14. private string _DayShift;
  15. public string DayShift
  16. {
  17. get { return _DayShift; }
  18. set { SetProperty(ref _DayShift, value); }
  19. }
  20. /// <summary>
  21. /// 晚班时间
  22. /// </summary>
  23. private string _NightShift;
  24. public string NightShift
  25. {
  26. get { return _NightShift; }
  27. set { SetProperty(ref _NightShift, value); }
  28. }
  29. public bool DayShiftSpotCheck { get; set; }
  30. public bool NightShiftSpotCheck { get; set; }
  31. public DateTime LoginTime { get; set; }
  32. }
  33. }