using System.Collections.Generic; 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(); } } }