using System.Collections.Generic; namespace Step.Model.DTOModels.JobModels { public class DTOJobCustomParamModel { public string Name; public string Type; public List SelectionList; public int Value; public DTOJobCustomParamModel() { SelectionList = new List(); } } }