- Timestamp:
- 02/12/21 15:24:18 (4 years ago)
- Location:
- branches/3026_IntegrationIntoSymSpace/HeuristicLab.JsonInterface/Interfaces
- Files:
-
- 1 added
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/3026_IntegrationIntoSymSpace/HeuristicLab.JsonInterface/Interfaces/IResultJsonItem.cs
r17519 r17834 1 namespace HeuristicLab.JsonInterface { 1 using System; 2 using Newtonsoft.Json; 3 4 namespace HeuristicLab.JsonInterface { 2 5 /// <summary> 3 /// EmptyJsonItem, which indicates a result. For example 'BestQuality'.6 /// JsonItem, which indicates a result. For example 'BestQuality'. 4 7 /// Types of this JsonItems are stored in the result section of the template. 5 8 /// </summary> 6 public interface IResultJsonItem : IJsonItem { } 9 public interface IResultJsonItem : IJsonItem { 10 /// <summary> 11 /// the result formatter type's fullname 12 /// </summary> 13 string ResultFormatterType { get; set; } 14 15 /// <summary> 16 /// the type of the result value 17 /// </summary> 18 [JsonIgnore] 19 Type ValueType { get; set; } 20 } 7 21 }
Note: See TracChangeset
for help on using the changeset viewer.