This commit is contained in:
2020-06-08 23:42:40 +00:00
parent 4e13b3c9bb
commit 937e9c5907
18 changed files with 119 additions and 83 deletions

View File

@@ -9,10 +9,10 @@ namespace rockfishCore.Models
{
children = new List<dtoNameIdItem>();
}
public long id;
public string name;
public List<dtoNameIdItem> children;
public long id { get; set; }
public string name { get; set; }
public List<dtoNameIdItem> children { get; set; }
}
}