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
{
///
/// 白班时间
///
private string _DayShift;
public string DayShift
{
get { return _DayShift; }
set { SetProperty(ref _DayShift, value); }
}
///
/// 晚班时间
///
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; }
}
}