Files
cms_thermo_active/Thermo.Active.Model/DTOModels/JobModels/DTOJobCustomParamModel.cs
T
2020-04-09 14:37:07 +02:00

17 lines
377 B
C#

using System.Collections.Generic;
namespace Thermo.Active.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>();
}
}
}