using HeuristicLab.Optimization; using System; using System.Collections.Generic; using System.Linq; using System.Threading.Tasks; namespace HeuristicLab.Clients.Hive.WebJobManager.Models { /// /// Used for file opening, contains batch run, depth and random /// public class BatchRunContainer {//used by file opening public BatchRun batch { get; set; } public List depth { get; set; } public System.Random randy { get; set; } public BatchRunContainer(BatchRun br, List d, int[] v, System.Random r) { batch = br; depth = d; depth.Add(v); randy = r; } } }