21 lines
435 B
C#
21 lines
435 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 Custom_Param
|
|
{
|
|
public string Name;
|
|
public string Type;
|
|
public List<string> SelectionList;
|
|
|
|
public Custom_Param()
|
|
{
|
|
SelectionList = new List<string>();
|
|
}
|
|
}
|
|
}
|