Radzen 6 FilterDescriptor Property vs FilterProperty

It appears that in Radzen.Blazor 6 there has been a new property added to the FilterDescriptor.

        /// <summary>
        /// Gets or sets the name of the filtered property.
        /// </summary>
        /// <value>The property.</value>
        public string FilterProperty { get; set; }

This looks very similar to the below property. I was wondering if someone could explain what the difference between these two properties are? Thanks.

        /// <summary>
        /// Gets or sets the name of the filtered property.
        /// </summary>
        /// <value>The property.</value>
        public string Property { get; set; }

It’s used specify collection item property name to perform filtering on collection properties. Check DataFilter and DataGrid demos.