RecipeDto.cs 368 B

123456789101112131415
  1. using ProductionLineMonitor.Core.Models;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.ComponentModel.DataAnnotations;
  5. using System.Diagnostics.CodeAnalysis;
  6. using System.Text;
  7. using System.Xml.Linq;
  8. namespace ProductionLineMonitor.Core.Dtos
  9. {
  10. public class RecipeDto : Recipe
  11. {
  12. public string ProductionLineName { get; set; }
  13. }
  14. }