18 lines
412 B
C#
18 lines
412 B
C#
using System.Collections.Generic;
|
|
|
|
namespace rockfishCore.Models
|
|
{
|
|
//Used to populate list routes for return
|
|
public class dtoNameIdChildrenItem
|
|
{
|
|
public dtoNameIdChildrenItem()
|
|
{
|
|
children = new List<dtoNameIdItem>();
|
|
}
|
|
public long id { get; set; }
|
|
public string name { get; set; }
|
|
public List<dtoNameIdItem> children { get; set; }
|
|
}
|
|
|
|
|
|
} |