Files
cms_thermo_active/Step.Model/DTOModels/JobModels/DTOMetadataModel.cs
T
Lucio Maranta 13a143957f Added macros API
WIP Job backend
2018-09-20 13:03:02 +02:00

23 lines
543 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 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>();
}
}
}