Free cookie consent management tool by TermsFeed Policy Generator

source: branches/OaaS/HeuristicLab.Services.Optimization.Web/Models/AdminModels.cs @ 8958

Last change on this file since 8958 was 8958, checked in by fschoepp, 11 years ago

#1888:

  • Added a administrator web interface for job management
  • Fixed Hive Client (PluginValidator) to find the assemblies within the right directories
  • Reorganized controller classes (Folders HL, Interfaces, Azure)
  • You may now successfully schedule and run jobs with the web ui.
File size: 654 bytes
Line 
1using System;
2using System.Collections.Generic;
3using System.ComponentModel.DataAnnotations;
4using System.Globalization;
5using System.Web.Mvc;
6using System.Web.Security;
7using System.Web;
8
9namespace HeuristicLab.Services.Optimization.Web.Models {
10  public class UploadScenario {
11    private HttpPostedFileBase scenarioMapper;
12
13    public HttpPostedFileBase ScenarioMapper {
14      get { return scenarioMapper; }
15      set { scenarioMapper = value; }
16    }
17
18    private HttpPostedFileBase scenarioXml;
19
20    public HttpPostedFileBase ScenarioXml {
21      get { return scenarioXml; }
22      set { scenarioXml = value; }
23    }
24
25  }
26}
Note: See TracBrowser for help on using the repository browser.