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 Tools; public List Customs; public DTOMetadataModel() { Generics = new DTOGenericParamModel(); Tools = new List(); Customs = new List(); } } }