13a143957f
WIP Job backend
21 lines
449 B
C#
21 lines
449 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Step.Model.DTOModels.JobModels
|
|
{
|
|
public class DTOGenericParamModel
|
|
{
|
|
public List<DTOImageParamModel> Images;
|
|
public string Description;
|
|
public TimeSpan ExecutionTime;
|
|
|
|
public DTOGenericParamModel()
|
|
{
|
|
Images = new List<DTOImageParamModel>();
|
|
}
|
|
}
|
|
}
|