using Newtonsoft.Json; namespace HeuristicLab.JsonInterface { public interface IValueLookupJsonItem : ILookupJsonItem { /// /// The IJsonItem representation of the actual value of an IValueLookupItem. /// [JsonIgnore] IJsonItem ActualValue { get; set; } } }