22 lines
442 B
C#
22 lines
442 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
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>();
|
|
}
|
|
}
|
|
}
|