using System;
using System.Collections.Generic;
using System.Text;
namespace ReZero.SuperAPI
{
///
/// Represents the parameters for a tree structure.
///
public class DataModelTreeParameter
{
///
/// Gets or sets the name of the property that contains the code.
///
public string? CodePropertyName { get; set; }
///
/// Gets or sets the root value of the tree.
///
public object? RootValue { get; set; }
///
/// Gets or sets the name of the property that contains the parent code.
///
public string? ParentCodePropertyName { get; set; }
///
/// Gets or sets the name of the property that contains the child nodes.
///
public string? ChildPropertyName { get; set; }
}
}