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

21 lines
558 B
C#
Raw Normal View History

using System.Runtime.Serialization;
namespace Umbraco.Cms.Core.PropertyEditors
{
/// <summary>
/// Represents the 'startNode' value for the <see cref="MultiNodePickerConfiguration"/>
/// </summary>
[DataContract]
public class MultiNodePickerConfigurationTreeSource
{
[DataMember(Name = "type")]
2022-02-16 16:03:53 +01:00
public string? ObjectType { get; set; }
[DataMember(Name = "query")]
2022-02-16 16:03:53 +01:00
public string? StartNodeQuery { get; set; }
[DataMember(Name = "id")]
2022-02-16 16:03:53 +01:00
public Udi? StartNodeId { get; set; }
}
}