12 lines
284 B
C#
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; }
|
|
}
|
|
}
|