using System; using System.Collections.Generic; using System.Linq; using System.Web; using HeuristicLab.Services.Optimization.ControllerService.Model; namespace HeuristicLab.Services.Optimization.Web.Models { /*public class Job { public string Id { get; set; } private IList tasks = new List(); public IList Tasks { get { return tasks; } set { tasks = value; } } }*/ public class StatusModel { // Jobs private IList jobs = new List(); public IList Jobs { get { return jobs; } set { jobs = value; } } } }