Line | |
---|
1 | using System;
|
---|
2 | using System.Collections.Generic;
|
---|
3 | using System.Linq;
|
---|
4 | using System.Web;
|
---|
5 |
|
---|
6 | namespace HLWebOKBAdminPlugin.ViewModels {
|
---|
7 | //view model for Algorithm Class Index page
|
---|
8 | //(passes information from the controller to the view)
|
---|
9 |
|
---|
10 | public class AlgorithmClassIndexViewModel {
|
---|
11 | public int NumberOfAlgorithmClasses { get; set; }
|
---|
12 | public ICollection<HLWebPluginHost.OKBService.AlgorithmClass> AlgorithmClasses { get; set; }
|
---|
13 | }//AlgorithmClassIndexViewModel
|
---|
14 | } |
---|
Note: See
TracBrowser
for help on using the repository browser.