13a143957f
WIP Job backend
23 lines
532 B
C#
23 lines
532 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Step.Model.DTOModels.JobModels
|
|
{
|
|
public class DTOMetadataFieldsModel
|
|
{
|
|
public string Description;
|
|
public TimeSpan ExecutionTime;
|
|
public List<int> Tools;
|
|
public List<DTOJobCustomParamModel> Customs;
|
|
|
|
public DTOMetadataFieldsModel()
|
|
{
|
|
Tools = new List<int>();
|
|
Customs = new List<DTOJobCustomParamModel>();
|
|
}
|
|
}
|
|
}
|