2018-04-12 21:29:36 +10:00
|
|
|
|
using Newtonsoft.Json;
|
|
|
|
|
|
|
|
|
|
|
|
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-16 08:48:47 +01:00
|
|
|
|
public string StartNodeId {get;set;}
|
2018-04-12 21:29:36 +10:00
|
|
|
|
}
|
|
|
|
|
|
}
|