Free cookie consent management tool by TermsFeed Policy Generator

source: branches/WebJobManager/HeuristicLab.Clients.Hive.WebJobManager/ViewModels/Jobs/UploadedJobViewModel.cs @ 13733

Last change on this file since 13733 was 13733, checked in by jlodewyc, 8 years ago

#2582 Last fixes Job Manager

File size: 986 bytes
Line 
1using HeuristicLab.Optimization;
2using System;
3using System.Collections.Generic;
4using System.Linq;
5using System.Threading.Tasks;
6
7namespace 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.