- using ProductionLineMonitor.Application.Services.LineService.Dtos;
- using ProductionLineMonitor.Core.Models;
- using System;
- using System.Collections.Generic;
- using System.Text;
- namespace ProductionLineMonitor.Web.Services.LineService
- {
- public class LineKeyInInfo : ProductionLine
- {
- public List<ProductionPlanDto> ProductionPlans { get; set; } = new List<ProductionPlanDto>();
- public List<KeyInInfo> KeyInInfos { get; set; } = new List<KeyInInfo>();
- }
- }
|