using System; using System.Collections.Generic; using System.Linq; using System.Web; namespace HLWebOKBAdminPlugin.ViewModels { //view model for Algorithm Class Index page //(passes information from the controller to the view) public class AlgorithmClassIndexViewModel { public int NumberOfAlgorithmClasses { get; set; } public ICollection AlgorithmClasses { get; set; } }//AlgorithmClassIndexViewModel }