namespace WebfrontCore.ViewModels { /// /// Helper class that hold information to assist with binding lists of items /// public class BindingHelper { /// /// Sequential property mapping items /// public string[] Properties { get; set; } /// /// Index in the array this new item lives /// public int ItemIndex { get; set; } /// /// Index in the array of the parent item /// public int ParentItemIndex { get; set; } } }