19 lines
463 B
C#
19 lines
463 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
|
|
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>();
|
|
}
|
|
}
|
|
} |