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 ProductionPlans { get; set; } = new List(); public List KeyInInfos { get; set; } = new List(); } }