2025-03-19 08:57:29 +01:00

12 lines
291 B
C#

using ManagerService.DTOs;
using System.Collections.Generic;
namespace Manager.DTOs
{
public class MenuDTO : SectionDTO
{
//public string Title { get; set; } // Dictionary<string, object> with all languages
public List<SectionDTO> sections { get; set; }
}
}