using System; using System.Collections.Generic; using System.Text; namespace Manager.Interfaces.DTO.SubSection { public class Menu { public string Title { get; set; } // Dictionary with all languages public List Sections { get; set; } } }