24 lines
568 B
C#
24 lines
568 B
C#
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>();
|
|
}
|
|
}
|
|
}
|