- using ProductionLineMonitor.Core.Models;
- using System;
- using System.Collections.Generic;
- using System.Text;
- namespace ProductionLineMonitor.Application.Services.HomeService.Dtos
- {
- public class LineDto : ProductionLine
- {
- public LineDto(Machine machine)
- {
- Machine = machine;
- }
- public Machine Machine { get; set; }
- }
- }
|