Rev | Line | |
---|
[13847] | 1 | using HeuristicLab.Clients.Hive.WebJobManager.Models;
|
---|
| 2 | using HeuristicLab.Optimization;
|
---|
[13733] | 3 | using System;
|
---|
| 4 | using System.Collections.Generic;
|
---|
| 5 | using System.Linq;
|
---|
| 6 | using System.Threading.Tasks;
|
---|
| 7 |
|
---|
| 8 | namespace HeuristicLab.Clients.Hive.WebJobManager.ViewModels
|
---|
| 9 | {
|
---|
| 10 | /// <summary>
|
---|
| 11 | /// Used to show data of uploaded files
|
---|
| 12 | /// </summary>
|
---|
[13862] | 13 | public class UploadedJobViewModel : MasterVM
|
---|
[13733] | 14 | {
|
---|
[13862] | 15 | public UploadedJobViewModel(HiveWebUser hwu) : base(hwu)
|
---|
[13733] | 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 | }
|
---|
[13847] | 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 | }
|
---|
[13733] | 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.