16 lines
400 B
C#
16 lines
400 B
C#
using System.Collections.Generic;
|
|
|
|
namespace Thermo.Active.Model.DTOModels.JobModels
|
|
{
|
|
public class DTOMetadataModel
|
|
{
|
|
public DTOGenericParamModel Generics;
|
|
public List<DTOJobCustomParamModel> Customs;
|
|
|
|
public DTOMetadataModel()
|
|
{
|
|
Generics = new DTOGenericParamModel();
|
|
Customs = new List<DTOJobCustomParamModel>();
|
|
}
|
|
}
|
|
} |