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
This commit is contained in:
23
WebfrontCore/ViewModels/BindingHelper.cs
Normal file
23
WebfrontCore/ViewModels/BindingHelper.cs
Normal file
@ -0,0 +1,23 @@
|
||||
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; }
|
||||
}
|
||||
}
|
@ -1,19 +0,0 @@
|
||||
using SharedLibraryCore.Interfaces;
|
||||
using System;
|
||||
using System.Collections;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Reflection;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace WebfrontCore.ViewModels
|
||||
{
|
||||
public class ConfigurationInfo
|
||||
{
|
||||
public string PropertyName { get; set; }
|
||||
public PropertyInfo PropertyInfo { get; set; }
|
||||
public IList PropertyValue { get; set; }
|
||||
public IBaseConfiguration Configuration { get; set; }
|
||||
public int NewItemCount { get; set; }
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user