LineKeyInInfo.cs 483 B

1234567891011121314
  1. using ProductionLineMonitor.Application.Services.LineService.Dtos;
  2. using ProductionLineMonitor.Core.Models;
  3. using System;
  4. using System.Collections.Generic;
  5. using System.Text;
  6. namespace ProductionLineMonitor.Web.Services.LineService
  7. {
  8. public class LineKeyInInfo : ProductionLine
  9. {
  10. public List<ProductionPlanDto> ProductionPlans { get; set; } = new List<ProductionPlanDto>();
  11. public List<KeyInInfo> KeyInInfos { get; set; } = new List<KeyInInfo>();
  12. }
  13. }