using System.Collections.Generic; namespace rockfishCore.Models { //Used to populate list routes for return public class dtoNameIdChildrenItem { public dtoNameIdChildrenItem() { children = new List(); } public long id { get; set; } public string name { get; set; } public List children { get; set; } } }