Free cookie consent management tool by TermsFeed Policy Generator

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

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

#2582 Start angular OKB manager, data loaded

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