Files
cms_thermo_active/Step.Model/DTOModels/JobModels/DTOGenericParamModel.cs
T
Lucio Maranta adfafcabd4 Library refactor, divided model by type
Added read/update metadata to the cms client
2018-09-27 17:30:37 +02:00

17 lines
380 B
C#

using System;
using System.Collections.Generic;
namespace Step.Model.DTOModels.JobModels
{
public class DTOGenericParamModel
{
public List<DTOImageParamModel> Images;
public string Description;
public TimeSpan ExecutionTime;
public DTOGenericParamModel()
{
Images = new List<DTOImageParamModel>();
}
}
}