12345678910111213141516171819202122 |
- using System;
- using System.Collections.Generic;
- using System.Text;
- namespace ProductionLineMonitor.Application.Services.HomeService.Dtos
- {
- public class ProductionPlanDto
- {
- public DateTime ShiftDate { get; set; }
- public string Shift { get; set; } = string.Empty;
- public string ModuleType { get; set; } = string.Empty;
- public int PlanCapacity { get; set; }
- }
- public class ProductionPlanDtoV1
- {
- public string ShiftDate { get; set; } = string.Empty;
- public string Shift { get; set; } = string.Empty;
- public string ModuleType { get; set; } = string.Empty;
- public int PlanCapacity { get; set; }
- }
- }
|