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