17 lines
368 B
C#
17 lines
368 B
C#
using System.Collections.Generic;
|
|
|
|
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>();
|
|
}
|
|
}
|
|
} |