Free cookie consent management tool by TermsFeed Policy Generator

source: branches/WebApplication/MVC2/HLWebOKBAdminPlugin/ViewModels/AlgorithmClassIndexViewModel.cs @ 5248

Last change on this file since 5248 was 5186, checked in by wtollsch, 14 years ago

#1198 MVC2 plugin template added for HL OKBWebClient

File size: 497 bytes
Line 
1using System;
2using System.Collections.Generic;
3using System.Linq;
4using System.Web;
5
6namespace 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.