using System.Runtime.Serialization; namespace Umbraco.Cms.Core.PropertyEditors { /// /// Represents the 'startNode' value for the /// [DataContract] public class MultiNodePickerConfigurationTreeSource { [DataMember(Name = "type")] public string? ObjectType { get; set; } [DataMember(Name = "query")] public string? StartNodeQuery { get; set; } [DataMember(Name = "id")] public Udi? StartNodeId { get; set; } } }