Files
cms_thermo_active/Client/Browser_Tools/Models/Metadata/CustomParam.cs
T
Lucio Maranta c2209e5808 Refactor job editor models
Fix
2018-09-28 11:15:57 +02:00

22 lines
439 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace CMS_Client.Browser_Tools.Models.Metadata
{
public class CustomParam
{
public string name;
public string type;
public List<string> selectionList;
public int value;
public CustomParam()
{
selectionList = new List<string>();
}
}
}