LineDto.cs 376 B

12345678910111213141516
  1. using ProductionLineMonitor.Core.Models;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.Text;
  5. namespace ProductionLineMonitor.Application.Services.HomeService.Dtos
  6. {
  7. public class LineDto : ProductionLine
  8. {
  9. public LineDto(Machine machine)
  10. {
  11. Machine = machine;
  12. }
  13. public Machine Machine { get; set; }
  14. }
  15. }