using System;
namespace ProductionLineMonitor.Application.Services.Dtos
{
///
/// 工厂班别
///
public class FactoryShift
{
///
/// 日期
///
public string Date { get; set; } = string.Empty;
///
/// 班次
///
public string Shifts { get; set; } = string.Empty;
///
/// 开始时间
///
public DateTime StartTime { get; set; }
///
/// 结束时间
///
public DateTime EndTime { get; set; }
}
}