WorkShift.cs 432 B

1234567891011121314151617181920
  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.Torque
  8. {
  9. public class WorkShift : BindableBase
  10. {
  11. public string DayShift { get; set; }
  12. public string NightShift { get; set; }
  13. public bool DayShiftSpotCheck { get; set; }
  14. public bool NightShiftSpotCheck { get; set; }
  15. }
  16. }