Added Save & Open JOBS in Client
This commit is contained in:
@@ -0,0 +1,23 @@
|
||||
using CMS_Client.Browser_Tools.Models.Metadata;
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace CMS_Client.Browser_Tools.Models
|
||||
{
|
||||
public class MetadataToFile
|
||||
{
|
||||
public string Description;
|
||||
public TimeSpan ExecutionTime;
|
||||
public List<int> Tools;
|
||||
public List<Custom_Param> Customs;
|
||||
|
||||
public MetadataToFile()
|
||||
{
|
||||
Tools = new List<int>();
|
||||
Customs = new List<Custom_Param>();
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user