| 1234567891011121314151617181920 |
- using Prism.Mvvm;
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace TeamAAS_VP.Models.Torque
- {
- public class WorkShift : BindableBase
- {
- public string DayShift { get; set; }
- public string NightShift { get; set; }
- public bool DayShiftSpotCheck { get; set; }
- public bool NightShiftSpotCheck { get; set; }
- }
- }
|