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

12 lines
284 B
C#

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