using System;
namespace NPP.SmartSchedue.Api.Contracts.Services.Time.Output;
///
/// 可用班次输出
///
public class AvailableShiftOutput
{
///
/// 班次ID
///
public long ShiftId { get; set; }
///
/// 班次名称
///
public string ShiftName { get; set; }
///
/// 班次编号
///
public int ShiftNumber { get; set; }
///
/// 可用日期
///
public DateTime AvailableDate { get; set; }
///
/// 推荐优先级
///
public int Priority { get; set; }
///
/// 推荐原因
///
public string RecommendationReason { get; set; }
}