697a752be0
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
24 lines
635 B
C#
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; }
|
|
}
|
|
}
|