13a143957f
WIP Job backend
22 lines
451 B
C#
22 lines
451 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 DTOJobCustomParamModel
|
|
{
|
|
public string Name;
|
|
public string Type;
|
|
public List<string> SelectionList;
|
|
public int Value;
|
|
|
|
public DTOJobCustomParamModel()
|
|
{
|
|
SelectionList = new List<string>();
|
|
}
|
|
}
|
|
}
|