19 lines
405 B
C#
19 lines
405 B
C#
using System.Collections.Generic;
|
|
|
|
namespace Client2020.BrowserTools.Metadata
|
|
{
|
|
public class Metas
|
|
{
|
|
public GenericsParam generics;
|
|
public List<int> tools;
|
|
public List<CustomParam> customs;
|
|
|
|
public Metas()
|
|
{
|
|
generics = new GenericsParam();
|
|
tools = new List<int>();
|
|
customs = new List<CustomParam>();
|
|
}
|
|
}
|
|
}
|