| 12345678910111213141516171819202122232425262728293031323334353637 |
- using Prism.Mvvm;
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace TeamAAS_VP.Models
- {
- public class WorkShift : BindableBase
- {
- /// <summary>
- /// 白班时间
- /// </summary>
- private string _DayShift;
- public string DayShift
- {
- get { return _DayShift; }
- set { SetProperty(ref _DayShift, value); }
- }
- /// <summary>
- /// 晚班时间
- /// </summary>
- private string _NightShift;
- public string NightShift
- {
- get { return _NightShift; }
- set { SetProperty(ref _NightShift, value); }
- }
- public bool DayShiftSpotCheck { get; set; }
- public bool NightShiftSpotCheck { get; set; }
- public DateTime LoginTime { get; set; }
- }
- }
|