namespace Telerik.Pivot.Core.Fields
{
/// <summary>
/// Represents a node in <see cref="T:Telerik.Pivot.Core.Fields.FieldInfoNode" /> hierarchy.
/// </summary>
public class ContainerNode
{
private List<ContainerNode> children;
/// <summary>
/// Gets a string that can be used as an identifier of this instance.
/// </summary>
/// <value>The name.</value>
public string Name { get; private set; }
/// <summary>Gets or sets the display name.</summary>
/// <value>The display name.</value>
public string Caption { get; private set; }