using System; using System.Collections.Generic; using System.Text; namespace ProductionLineMonitor.Core.Dtos { public class MenuDto { public string Id { get; set; } public string Icon { get; set; } public string Url { get; set; } public string Name { get; set; } public List Items { get; set;} = new List(); } }