Changed Client library
This commit is contained in:
@@ -0,0 +1,20 @@
|
||||
using Client2020.BrowserTools.Metadata;
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
|
||||
namespace Client2020.BrowserTools.Models
|
||||
{
|
||||
public class MetadataToFile
|
||||
{
|
||||
public string description;
|
||||
public TimeSpan executionTime;
|
||||
public List<int> tools;
|
||||
public List<CustomParam> customs;
|
||||
|
||||
public MetadataToFile()
|
||||
{
|
||||
tools = new List<int>();
|
||||
customs = new List<CustomParam>();
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user