Line | |
---|
1 | using HeuristicLab.Optimization;
|
---|
2 | using System;
|
---|
3 | using System.Collections.Generic;
|
---|
4 | using System.Linq;
|
---|
5 | using System.Threading.Tasks;
|
---|
6 |
|
---|
7 | namespace HeuristicLab.Clients.Hive.WebJobManager.ViewModels
|
---|
8 | {
|
---|
9 | /// <summary>
|
---|
10 | /// Used to show data of uploaded files
|
---|
11 | /// </summary>
|
---|
12 | public class UploadedJobViewModel
|
---|
13 | {
|
---|
14 | public UploadedJobViewModel()
|
---|
15 | {
|
---|
16 | FullDatePaths = new List<string>();
|
---|
17 | DisplayDatePaths = new List<string>();
|
---|
18 | FullFilesPaths = new List<string>();
|
---|
19 | DisplayFilesPaths = new List<string>();
|
---|
20 | SelectedIndex = -1;
|
---|
21 | }
|
---|
22 |
|
---|
23 | public List<string> FullDatePaths { get; set; }
|
---|
24 | public List<string> DisplayDatePaths { get; set; }
|
---|
25 | public List<string> FullFilesPaths { get; set; }
|
---|
26 | public List<string> DisplayFilesPaths { get; set; }
|
---|
27 | public int SelectedIndex { get; set; }
|
---|
28 | public string message { get; set; }
|
---|
29 |
|
---|
30 |
|
---|
31 | }
|
---|
32 | }
|
---|
Note: See
TracBrowser
for help on using the repository browser.