Files
cms_thermo_active/Client/Browser_Tools/Models/Metadata/CustomParam.cs
T
2018-09-21 11:21:45 +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>();
}
}
}