- Timestamp:
- 02/10/20 17:29:35 (5 years ago)
- Location:
- branches/3026_IntegrationIntoSymSpace/HeuristicLab.JsonInterface/Models
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/3026_IntegrationIntoSymSpace/HeuristicLab.JsonInterface/Models/JsonItem.cs
r17420 r17433 41 41 42 42 public virtual string Name { get; set; } 43 44 public virtual string Description { get; set; } 43 45 44 46 public virtual string Path { -
branches/3026_IntegrationIntoSymSpace/HeuristicLab.JsonInterface/Models/UnsupportedJsonItem.cs
r17408 r17433 9 9 public class UnsupportedJsonItem : JsonItem { 10 10 public override string Name { 11 get => throw new NotSupportedException(); 12 set => throw new NotSupportedException(); 13 } 14 15 public override string Description { 11 16 get => throw new NotSupportedException(); 12 17 set => throw new NotSupportedException();
Note: See TracChangeset
for help on using the changeset viewer.