Free cookie consent management tool by TermsFeed Policy Generator

source: branches/WebApplication/MVC2/HLWebOKBQueryPlugin/Views/Query/RunCollectionData.cs @ 5977

Last change on this file since 5977 was 5977, checked in by msammer, 13 years ago

#1446 added user-controls RunCollectionDetail, RunCollectionTable and class RunCollectionData for showing the run-results

File size: 519 bytes
Line 
1using System;
2using System.Collections.Generic;
3using System.Linq;
4using System.Web;
5
6using HLWebOKBQueryPlugin.OKBQueryService;
7
8namespace HLWebOKBQueryPlugin.Views.Query {
9    public class RunCollectionData {
10        public string AlgorithmName { get; set; }
11        public string AlgorithmAlgorithmClass { get; set; }
12
13        public RunCollectionData(Run run) {
14            AlgorithmName = run.Algorithm.Name;
15            AlgorithmAlgorithmClass = run.Algorithm.AlgorithmClass;
16        }
17    }
18}
Note: See TracBrowser for help on using the repository browser.