2025-03-06 17:39:08 +01:00

12 lines
278 B
C#

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