18 lines
349 B
C#
18 lines
349 B
C#
using System.Collections.Generic;
|
|
|
|
namespace Client2020.BrowserTools.Metadata
|
|
{
|
|
public class CustomParam
|
|
{
|
|
public string name;
|
|
public string type;
|
|
public List<string> selectionList;
|
|
public int value;
|
|
|
|
public CustomParam()
|
|
{
|
|
selectionList = new List<string>();
|
|
}
|
|
}
|
|
}
|