This commit is contained in:
2018-06-28 23:37:38 +00:00
commit 4518298aaf
152 changed files with 24114 additions and 0 deletions

View 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;
}
}