18 lines
360 B
C#
18 lines
360 B
C#
using System.Collections.Generic;
|
|
|
|
namespace Active_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>();
|
|
}
|
|
}
|
|
}
|