Files
Umbraco-CMS/src/Umbraco.Infrastructure/PropertyEditors/MultiNodePickerConfigurationTreeSource.cs

22 lines
531 B
C#
Raw Normal View History

using Newtonsoft.Json;
2019-01-17 19:31:35 +01:00
using Umbraco.Core;
namespace Umbraco.Web.PropertyEditors
{
/// <summary>
/// Represents the 'startNode' value for the <see cref="MultiNodePickerConfiguration"/>
/// </summary>
[JsonObject]
public class MultiNodePickerConfigurationTreeSource
{
[JsonProperty("type")]
public string ObjectType {get;set;}
[JsonProperty("query")]
public string StartNodeQuery {get;set;}
[JsonProperty("id")]
2019-01-17 19:31:35 +01:00
public Udi StartNodeId {get;set;}
}
}