IW4M-Admin/WebfrontCore/ViewModels/BindingHelper.cs
RaidMax 697a752be0 make the version name match the actual name for FTP deployment
fix rare issue with summing session scores
copy font to expected wwwroot dir in debug mode so we get pretty icons when developing
upgrade some packages

pretty much reworked the entire server web config to support better validation and stuff.. not really a small fix

finish web configuration changes (I think)

finish up configuration changes and update shared library nuget
2020-01-20 10:23:23 -06:00

24 lines
635 B
C#

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