using System; using System.Collections.Generic; namespace Thermo.Active.Model.DTOModels.JobModels { public class DTOMetadataFieldsModel { public string Description; public TimeSpan ExecutionTime; public List Customs; public DTOMetadataFieldsModel() { Customs = new List(); } } }