- Timestamp:
- 04/24/13 13:40:43 (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/OaaS/HeuristicLab.Services.Optimization.Web/Models/AdminModels.cs
r9362 r9395 29 29 set { scenarioJs = value; } 30 30 } 31 } 32 33 public class ScenarioModel { 34 public string Scenario { get; set; } 35 public bool Exists { get; set; } 36 } 37 38 public class UploadVisualExtension { 39 40 private string scenarioId; 41 42 public string ScenarioId { 43 get { return scenarioId; } 44 set { scenarioId = value; } 45 } 46 47 48 private HttpPostedFileBase scenarioJs; 49 50 public HttpPostedFileBase ScenarioJs { 51 get { return scenarioJs; } 52 set { scenarioJs = value; } 53 } 31 54 32 55 }
Note: See TracChangeset
for help on using the changeset viewer.