- Timestamp:
- 02/03/20 17:32:50 (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/3026_IntegrationIntoSymSpace/HeuristicLab.JsonInterface/Interfaces/IJsonItem.cs
r17406 r17420 15 15 16 16 [JsonIgnore] 17 IList<IJsonItem> Children { get; } 17 IList<IJsonItem> Children { get; } //TODO: IEnumerable 18 18 19 19 [JsonIgnore] … … 28 28 IJsonItemValidator GetValidator(); 29 29 30 void AddChild s(params IJsonItem[] childs);30 void AddChildren(params IJsonItem[] childs); 31 31 32 void AddChild s(IEnumerable<IJsonItem> childs);32 void AddChildren(IEnumerable<IJsonItem> childs); 33 33 } 34 34 }
Note: See TracChangeset
for help on using the changeset viewer.