Files
cms_thermo_active/Step.Model/DTOModels/JobModels/DTOMetadataModel.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

18 lines
460 B
C#

using System.Collections.Generic;
namespace Step.Model.DTOModels.JobModels
{
public class DTOMetadataModel
{
public DTOGenericParamModel Generics;
public List<int> Tools;
public List<DTOJobCustomParamModel> Customs;
public DTOMetadataModel()
{
Generics = new DTOGenericParamModel();
Tools = new List<int>();
Customs = new List<DTOJobCustomParamModel>();
}
}
}