Refactor job editor models
Fix
This commit is contained in:
@@ -9,15 +9,15 @@ namespace CMS_Client.Browser_Tools.Models
|
||||
{
|
||||
public class MetadataToFile
|
||||
{
|
||||
public string Description;
|
||||
public TimeSpan ExecutionTime;
|
||||
public List<int> Tools;
|
||||
public List<CustomParam> Customs;
|
||||
public string description;
|
||||
public TimeSpan executionTime;
|
||||
public List<int> tools;
|
||||
public List<CustomParam> customs;
|
||||
|
||||
public MetadataToFile()
|
||||
{
|
||||
Tools = new List<int>();
|
||||
Customs = new List<CustomParam>();
|
||||
tools = new List<int>();
|
||||
customs = new List<CustomParam>();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user