This commit is contained in:
18
Models/dtoNameIdChildrenItem.cs
Normal file
18
Models/dtoNameIdChildrenItem.cs
Normal file
@@ -0,0 +1,18 @@
|
||||
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;
|
||||
public string name;
|
||||
public List<dtoNameIdItem> children;
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user