- using ProductionLineMonitor.Core.Models;
- using System;
- using System.Collections.Generic;
- using System.ComponentModel.DataAnnotations;
- using System.Diagnostics.CodeAnalysis;
- using System.Text;
- using System.Xml.Linq;
- namespace ProductionLineMonitor.Core.Dtos
- {
- public class RecipeDto : Recipe
- {
- public string ProductionLineName { get; set; }
- }
- }
|