Added value to custom job fields, added is job

Fixed queue
This commit is contained in:
Lucio Maranta
2018-09-19 16:46:44 +02:00
parent d2d532cd18
commit 9653abacda
12 changed files with 109 additions and 87 deletions
@@ -12,12 +12,12 @@ namespace CMS_Client.Browser_Tools.Models
public string Description;
public TimeSpan ExecutionTime;
public List<int> Tools;
public List<Custom_Param> Customs;
public List<CustomParam> Customs;
public MetadataToFile()
{
Tools = new List<int>();
Customs = new List<Custom_Param>();
Customs = new List<CustomParam>();
}
}
}