17 lines
403 B
C#
17 lines
403 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
|
|
namespace Thermo.Active.Model.DTOModels.JobModels
|
|
{
|
|
public class DTOMetadataFieldsModel
|
|
{
|
|
public string Description;
|
|
public TimeSpan ExecutionTime;
|
|
public List<DTOJobCustomParamModel> Customs;
|
|
|
|
public DTOMetadataFieldsModel()
|
|
{
|
|
Customs = new List<DTOJobCustomParamModel>();
|
|
}
|
|
}
|
|
} |